GPQAPP
1DOMAIN=localhost
2
3# Environment: local, staging, production
4ENVIRONMENT=local
5
6PROJECT_NAME="Full Stack FastAPI Project"
7STACK_NAME=full-stack-fastapi-project
8
9# Backend
10BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com"
11SECRET_KEY=changethis
12FIRST_SUPERUSER=admin@example.com
13FIRST_SUPERUSER_PASSWORD=changethis
14USERS_OPEN_REGISTRATION=False
15
16# Emails
17SMTP_HOST=
18SMTP_USER=
19SMTP_PASSWORD=
20EMAILS_FROM_EMAIL=info@example.com
21SMTP_TLS=True
22SMTP_SSL=False
23SMTP_PORT=587
24
25# Postgres
26POSTGRES_SERVER=localhost
27POSTGRES_PORT=5432
28POSTGRES_DB=app
29POSTGRES_USER=postgres
30POSTGRES_PASSWORD=changethis
31
32#DSN
33POSTGRES_DSN=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@{POSTGRES_SERVER}:{POSTGRES_PORT}/${POSTGRES_DB}
34
35# Redis
36REDIS_DSN=
37
38SENTRY_DSN=
39
40# Configure these with your own Docker registry images
41DOCKER_IMAGE_BACKEND=backend
42DOCKER_IMAGE_FRONTEND=frontend