-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
69 lines (53 loc) · 1.8 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# 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.
# Drizzle
# Get the Database URL from the "prisma" dropdown selector in PlanetScale
# Change the query params at the end of the URL to "?ssl={"rejectUnauthorized":true}"
DATABASE_URL='mysql://{USERNAME}:{PASSWORD}@aws.connect.psdb.cloud/{DATABASE_NAME}?ssl={"rejectUnauthorized":true}'
# 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=""
# for webhooks use ngrok or similar for stable DNS accessible URL
NEXTAUTH_URL=""
UPLOADTHING_URL=""
# Next Auth Discord Provider
DISCORD_CLIENT_ID=""
DISCORD_CLIENT_SECRET=""
# OpenAI Credentials to access gpt-4
OPENAI_API_KEY=""
OPENAI_MODEL_ID="gpt-4"
OPENAI_EMBEDDINGS_MODEL="text-embedding-ada-002"
# Sanity
SANITY_STUDIO_PROJECT_ID=""
SANITY_STUDIO_DATASET="production"
SANITY_STUDIO_API_VERSION="2023-10-03"
SANITY_API_TOKEN=""
# Inngest
INNGEST_EVENT_KEY=""
INNGEST_SIGNING_KEY=""
# Mux
MUX_ACCESS_TOKEN_ID=""
MUX_SECRET_KEY=""
# Pinecone
PINECONE_API_KEY=""
PINECONE_ENVIRONMENT=""
PINECONE_INDEX=""
# Github
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
# PartyKit
NEXT_PUBLIC_PARTY_KIT_URL="http://127.0.0.1:1999"
NEXT_PUBLIC_PARTYKIT_ROOM_NAME="gpt-4-chain"
# DEEPGRAM
DEEPGRAM_API_KEY=""
# Uploadthing
UPLOADTHING_SECRET=""
UPLOADTHING_APP_ID=""