♻ Move project source files to top level from src, update Sentry dependency (#630)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
50
.env
Normal file
50
.env
Normal file
@@ -0,0 +1,50 @@
|
||||
# Update this with your app domain
|
||||
DOMAIN=localhost
|
||||
# DOMAIN=localhost.tiangolo.com
|
||||
|
||||
SERVER_HOST=http://localhost
|
||||
|
||||
PROJECT_NAME="FastAPI Project"
|
||||
|
||||
STACK_NAME=fastapi-project
|
||||
|
||||
# Backend
|
||||
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com"
|
||||
SECRET_KEY=changethis
|
||||
FIRST_SUPERUSER=admin@example.com
|
||||
FIRST_SUPERUSER_PASSWORD=changethis
|
||||
SMTP_HOST=
|
||||
SMTP_USER=
|
||||
SMTP_PASSWORD=
|
||||
EMAILS_FROM_EMAIL=info@example.com
|
||||
SMTP_TLS=True
|
||||
SMTP_PORT=587
|
||||
|
||||
USERS_OPEN_REGISTRATION=False
|
||||
|
||||
# Postgres
|
||||
POSTGRES_SERVER=db
|
||||
POSTGRES_USER=postgres
|
||||
POSTGRES_DB=app
|
||||
POSTGRES_PASSWORD=changethis
|
||||
|
||||
# PgAdmin
|
||||
PGADMIN_DEFAULT_EMAIL=admin@example.com
|
||||
PGADMIN_DEFAULT_PASSWORD=changethis
|
||||
PGADMIN_LISTEN_PORT=5050
|
||||
|
||||
SENTRY_DSN=
|
||||
|
||||
# Flower
|
||||
FLOWER_BASIC_AUTH=
|
||||
|
||||
# Traefik
|
||||
TRAEFIK_PUBLIC_NETWORK=traefik-public
|
||||
TRAEFIK_TAG=traefik
|
||||
TRAEFIK_PUBLIC_TAG=traefik-public
|
||||
|
||||
# Configure these with your own Docker registry images
|
||||
DOCKER_IMAGE_BACKEND=backend
|
||||
DOCKER_IMAGE_CELERYWORKER=celery
|
||||
DOCKER_IMAGE_FRONTEND=frontend
|
||||
DOCKER_IMAGE_NEW_FRONTEND=new-frontend
|
Reference in New Issue
Block a user