-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
36 lines (28 loc) · 1.16 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
# Description: Environment variables for the Gandalf API
# you can get the public and private key from the Gandalf API dashboard
# Gandalf - <https://dashboard.gandalf.network>
GANDALF_PRIVATE_KEY=YOUR_GANDALF_PRIVATE_KEY
NEXT_PUBLIC_GANDALF_PUBLIC_KEY=YOUR_GANDALF_PUBLIC_KEY
# Description: Postgres
# Postgres - <https://vercel.com/storage/postgres>
POSTGRES_URL=YOUR_POSTGRES_URL
POSTGRES_PRISMA_URL=YOUR_POSTGRES_URL
# Description: TVDB
# TMDB - <https://developer.themoviedb.org/reference/intro/getting-started>
TMDB_BASE_URL=YOUR_TMDB_BASE_URL
TMDB_API_KEY=YOUR_TMDB_API_KEY
# Description: Perplexity API Key
# Perplexity - <https://docs.perplexity.ai/docs/getting-started>
PERPLEXITY_API_KEY=YOUR_PERPLEXITY_API_KEY
# Description: Redis URL
# Redis - <https://vercel.com/docs/storage/vercel-kv/quickstart>
REDIS_URL=YOUR_REDIS_URL
# Description: OpenAI API Key
# OpenAI - <https://platform.openai.com/api-keys>
OPENAI_API_KEY=YOUR_OPENAI_API_KEY
# Description: Custom staging url
# Example: http://staging.yourdomain.com
NEXT_PUBLIC_STAGING_URL=""
# Description: Development Localhost URL
# Example: <http://localhost:3000>
NEXT_PUBLIC_DEVELOPMENT_URL=YOUR_DEVELOPMENT_URL