# Domain # This would be set to the production domain with an env var on deployment # used by Traefik to transmit traffic and acquire TLS certificates DOMAIN=localhost # To test the local Traefik config # DOMAIN=localhost.tiangolo.com # Environment: local, staging, production ENVIRONMENT=local PROJECT_NAME="Full Stack FastAPI Project" SECRET_KEY=changethis FIRST_SUPERUSER=admin@example.com FIRST_SUPERUSER_PASSWORD=changethis # Emails SMTP_HOST=localhost EMAILS_FROM_EMAIL=info@example.com SMTP_TLS=False SMTP_PORT=1025 # Postgres POSTGRES_SERVER=localhost POSTGRES_DB=app POSTGRES_USER=postgres POSTGRES_PASSWORD=changethis