update .env example
This commit is contained in:
parent
d89e9a41b2
commit
34fe998456
1 changed files with 24 additions and 16 deletions
40
.env.example
40
.env.example
|
|
@ -1,25 +1,33 @@
|
|||
# Since the ".env" file is gitignored, you can use the ".env.example" file to
|
||||
# build a new ".env" file when you clone the repo. Keep this file up-to-date
|
||||
# when you add new variables to `.env`.
|
||||
|
||||
# This file will be committed to version control, so make sure not to have any
|
||||
# secrets in it. If you are cloning this repo, create a copy of this file named
|
||||
# ".env" and populate it with your secrets.
|
||||
|
||||
# When adding additional environment variables, the schema in "/src/env.mjs"
|
||||
# should be updated accordingly.
|
||||
|
||||
# Prisma
|
||||
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env
|
||||
DATABASE_URL="file:./db.sqlite"
|
||||
DATABASE_URL=""
|
||||
|
||||
# Next Auth
|
||||
# You can generate a new secret on the command line with:
|
||||
# openssl rand -base64 32
|
||||
# https://next-auth.js.org/configuration/options#secret
|
||||
# NEXTAUTH_SECRET=""
|
||||
NEXTAUTH_SECRET=""
|
||||
NEXTAUTH_URL="http://localhost:3000"
|
||||
|
||||
# Next Auth Discord Provider
|
||||
DISCORD_CLIENT_ID=""
|
||||
DISCORD_CLIENT_SECRET=""
|
||||
# Next Auth Provider
|
||||
GOOGLE_CLIENT_ID=""
|
||||
GOOGLE_CLIENT_SECRET=""
|
||||
GITHUB_ID=""
|
||||
GITHUB_SECRET=""
|
||||
|
||||
# AWS S3
|
||||
AWS_ENDPOINT=""
|
||||
AWS_REGION=""
|
||||
AWS_KEY_ID=""
|
||||
AWS_ACCESS_KEY=""
|
||||
AWS_BUCKET_NAME=""
|
||||
|
||||
# QStash
|
||||
QSTASH_CURRENT_SIGNING_KEY=
|
||||
QSTASH_NEXT_SIGNING_KEY=
|
||||
|
||||
# Stripe
|
||||
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=""
|
||||
STRIPE_SECRET_KEY=""
|
||||
STRIPE_PRICE_ID=""
|
||||
STRIPE_WEBHOOK_SECRET=""
|
||||
Loading…
Reference in a new issue