-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3692726
commit 5f57e15
Showing
4 changed files
with
362 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# 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. | ||
|
||
ORIGIN="" | ||
|
||
# Prisma DB | ||
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env | ||
DATABASE_URL="" | ||
|
||
# Google API | ||
GOOGLE_CLIENT_ID="" | ||
GOOGLE_CLIENT_SECRET="" | ||
|
||
# Dall E API | ||
DALLE_API_KEY="" | ||
USE_MOCK_DALLE="true" | ||
|
||
# Stable Diffusion API | ||
STABLE_DIFFUSION_API_KEY="" | ||
STABLE_DIFFUSION_API_ENDPOINT="" | ||
|
||
# AWS/S3 API | ||
ACCESS_KEY_ID_AWS="" | ||
SECRET_ACCESS_KEY_AWS="" | ||
REGION_AWS="us-east-2" | ||
S3_BUCKET_URL_AWS="" | ||
S3_BUCKET_THUMBNAIL_URL_AWS="" | ||
S3_BUCKET_NAME_AWS="" | ||
|
||
# Stripe API | ||
STRIPE_PUBLISHABLE_KEY="" | ||
STRIPE_SECRET_KEY="" | ||
STRIPE_CREDITS_PRICE_ID="" | ||
STRIPE_WEB_HOOK_SECRET="" | ||
|
||
# Honeypot | ||
HONEYPOT_SECRET="SOME_SECRET_HONEYPOT" | ||
|
||
# CSRF | ||
SESSION_SECRET="SOME_SECRET_SESSION" | ||
|
||
# Clerk | ||
CLERK_PUBLISHABLE_KEY="" | ||
CLERK_SECRET_KEY="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.