Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added env variables required for next auth #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Get your own Dub API key: https://dub.co/docs/api-reference/tokens
DUB_API_KEY=

# Next Auth Secrets
NEXTAUTH_URL=
AUTH_SECRET=

# GitHub
AUTH_GITHUB_ID=
AUTH_GITHUB_SECRET=
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ next-env.d.ts
# misc
.vscode
*.jsonl

prisma/migrations
1 change: 1 addition & 0 deletions auth.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ export default {
},
}),
],
secret:process.env.AUTH_SECRET
} satisfies NextAuthConfig;