2024-09-23 13:04:26 +00:00
|
|
|
DB_USER=postgres
|
|
|
|
DB_PASS=your-super-secret-and-long-postgres-password
|
|
|
|
DB_NAME=postgres
|
|
|
|
DB_PORT=5432
|
|
|
|
DATABASE_URL="postgresql://${DB_USER}:${DB_PASS}@localhost:${DB_PORT}/${DB_NAME}?connect_timeout=60&schema=platform"
|
2024-07-24 09:53:09 +00:00
|
|
|
PRISMA_SCHEMA="postgres/schema.prisma"
|
2024-09-04 22:00:14 +00:00
|
|
|
|
2024-09-25 11:53:11 +00:00
|
|
|
BACKEND_CORS_ALLOW_ORIGINS=["http://localhost:3000"]
|
2024-09-25 11:06:47 +00:00
|
|
|
|
2024-09-04 22:00:14 +00:00
|
|
|
REDIS_HOST=localhost
|
|
|
|
REDIS_PORT=6379
|
|
|
|
REDIS_PASSWORD=password
|
|
|
|
|
2024-09-14 16:47:28 +00:00
|
|
|
ENABLE_AUTH=false
|
|
|
|
ENABLE_CREDIT=false
|
2024-09-03 10:56:21 +00:00
|
|
|
APP_ENV="local"
|
2024-09-10 09:05:31 +00:00
|
|
|
PYRO_HOST=localhost
|
2024-09-04 22:00:14 +00:00
|
|
|
SENTRY_DSN=
|
2024-09-18 21:21:40 +00:00
|
|
|
# This is needed when ENABLE_AUTH is true
|
2024-09-23 13:04:26 +00:00
|
|
|
SUPABASE_JWT_SECRET=our-super-secret-jwt-token-with-at-least-32-characters-long
|
2024-09-04 22:00:14 +00:00
|
|
|
|
|
|
|
## ===== OPTIONAL API KEYS ===== ##
|
|
|
|
|
|
|
|
# LLM
|
|
|
|
OPENAI_API_KEY=
|
|
|
|
ANTHROPIC_API_KEY=
|
|
|
|
GROQ_API_KEY=
|
|
|
|
|
|
|
|
# Reddit
|
|
|
|
REDDIT_CLIENT_ID=
|
|
|
|
REDDIT_CLIENT_SECRET=
|
|
|
|
REDDIT_USERNAME=
|
|
|
|
REDDIT_PASSWORD=
|
|
|
|
|
|
|
|
# Discord
|
|
|
|
DISCORD_BOT_TOKEN=
|
|
|
|
|
|
|
|
# SMTP/Email
|
|
|
|
SMTP_SERVER=
|
|
|
|
SMTP_PORT=
|
|
|
|
SMTP_USERNAME=
|
|
|
|
SMTP_PASSWORD=
|
|
|
|
|
|
|
|
# D-ID
|
|
|
|
DID_API_KEY=
|
|
|
|
|
|
|
|
# Open Weather Map
|
|
|
|
OPENWEATHERMAP_API_KEY=
|
|
|
|
|
|
|
|
# SMTP
|
|
|
|
SMTP_SERVER=
|
|
|
|
SMTP_PORT=
|
|
|
|
SMTP_USERNAME=
|
|
|
|
SMTP_PASSWORD=
|
|
|
|
|
|
|
|
# Medium
|
|
|
|
MEDIUM_API_KEY=
|
|
|
|
MEDIUM_AUTHOR_ID=
|
2024-09-12 11:03:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Logging Configuration
|
|
|
|
LOG_LEVEL=INFO
|
|
|
|
ENABLE_CLOUD_LOGGING=false
|
|
|
|
ENABLE_FILE_LOGGING=false
|
|
|
|
# Use to manually set the log directory
|
|
|
|
# LOG_DIR=./logs
|