-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (29 loc) · 1009 Bytes
/
Copy path.env.example
File metadata and controls
34 lines (29 loc) · 1009 Bytes
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
ENV_NAME=development
APP_DOMAIN=
CLIENT_URL=http://localhost:3000
# Keep it empty to allow `*`
CORS_ORIGINS=http://localhost:3000,http://localhost:5173
LOG_LEVEL=ERROR # DEBUG|INFO|WARNING|ERROR
LOG_JSON=false
LOG_REQUESTS=true
# Database (PostgreSQL via Docker)
# Note: When using Docker Compose, DATABASE_URL is automatically overridden
# to use the 'postgres' service name and port 5432 for internal connections.
DB_USER=postgres
DB_PASSWORD=postgres
DB_PORT=54521
DB_HOST=localhost
DB_NAME=fastback_postgres
DATABASE_URL=postgresql+psycopg://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
# SQLAdmin session secret (change this for production)
SESSION_SECRET_KEY=bfe3a03d5c9fd65f0991e0d56b23df9fbd35e12fbbdba355f5d4d89e261d73d7
# SQLAdmin credentials
ADMIN_USERNAME=admin
ADMIN_PASSWORD=admin
# Google
GOOGLE_APPLICATION_CREDENTIALS="./service-account.json"
FIREBASE_API_KEY=
# Resend
# Set to false to skip sending emails (useful for local development)
ENABLE_RESEND=true
RESEND_API_KEY=