22 lines
861 B
Text
22 lines
861 B
Text
# You must first activate a Billing Account here: https://platform.openai.com/account/billing/overview
|
|
# Then get your OpenAI API Key here: https://platform.openai.com/account/api-keys
|
|
OPENAI_API_KEY=XXXXXXXX
|
|
|
|
# Generate a random secret: https://generate-secret.vercel.app/32 or `openssl rand -base64 32`
|
|
AUTH_SECRET=XXXXXXXX
|
|
|
|
# Instructions to create kv database here: https://vercel.com/docs/storage/vercel-kv/quickstart and
|
|
KV_URL=XXXXXXXX
|
|
KV_REST_API_URL=XXXXXXXX
|
|
KV_REST_API_TOKEN=XXXXXXXX
|
|
KV_REST_API_READ_ONLY_TOKEN=XXXXXXXX
|
|
|
|
# Instructions to create postgres database here: https://vercel.com/docs/storage/vercel-postgres/quickstart and
|
|
POSTGRES_URL=XXXXXXXX
|
|
POSTGRES_PRISMA_URL=XXXXXXXX
|
|
POSTGRES_URL_NO_SSL=XXXXXXXX
|
|
POSTGRES_URL_NON_POOLING=XXXXXXXX
|
|
POSTGRES_USER=XXXXXXXX
|
|
POSTGRES_HOST=XXXXXXXX
|
|
POSTGRES_PASSWORD=XXXXXXXX
|
|
POSTGRES_DATABASE=XXXXXXXX
|