@@ -5,22 +5,27 @@ DOMAIN=localhost
55# To test the local Traefik config
66# DOMAIN=localhost.tiangolo.com
77
8+
89# Used by the backend to generate links in emails to the frontend
910FRONTEND_HOST = http://localhost:5173
1011# In staging and production, set this env var to the frontend host, e.g.
1112# FRONTEND_HOST=https://dashboard.example.com
1213
14+
1315# Environment: local, staging, production
1416ENVIRONMENT = local
1517
18+
1619PROJECT_NAME = " Full Stack FastAPI Project"
1720STACK_NAME = full-stack-fastapi-project
1821
22+
1923# Backend
20- BACKEND_CORS_ORIGINS = " http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com"
21- SECRET_KEY = changethis
24+ BACKEND_CORS_ORIGINS = " http://localhost,http://localhost:5173,http://localhost:8081, https://localhost,https://localhost:5173,https://localhost:8081 ,http://localhost.tiangolo.com"
25+ SECRET_KEY = VfIGsNDeZkTOiSHIgoG9DjhpTyaLGBb-lZvYa8-wbTM
222623- FIRST_SUPERUSER_PASSWORD = changethis
27+ FIRST_SUPERUSER_PASSWORD = ierjXObp0qpZq82J
28+
2429
2530# Emails
2631SMTP_HOST =
@@ -31,15 +36,21 @@ SMTP_TLS=True
3136SMTP_SSL = False
3237SMTP_PORT = 587
3338
39+
3440# Postgres
3541POSTGRES_SERVER = localhost
3642POSTGRES_PORT = 5432
3743POSTGRES_DB = app
3844POSTGRES_USER = postgres
39- POSTGRES_PASSWORD = changethis
45+ POSTGRES_PASSWORD = SP52qKZTPKFTpi0w7adJJS80G4BpGDC4X2uxH5H7FYY
46+
4047
4148SENTRY_DSN =
4249
50+
4351# Configure these with your own Docker registry images
4452DOCKER_IMAGE_BACKEND = backend
4553DOCKER_IMAGE_FRONTEND = frontend
54+
55+
56+
0 commit comments