Skip to content

Commit

Permalink
fix: fix typo && add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
KodateMitsuru committed Jan 6, 2025
1 parent 049b095 commit d99c7a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.vscode
.vscode
node_modules
pnpm-lock.yaml
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app.use(express.json());

const REDIS_URL = process.env.REDIS_URL || "redis://localhost:6379";
const redis = new Redis(REDIS_URL);
const Secret = process.env.SECRECT || "password";
const Secret = process.env.SECRET || "password";

const corsOptions = {
origin: "*",
Expand Down

0 comments on commit d99c7a7

Please sign in to comment.