-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
48 lines (37 loc) · 1.13 KB
/
.env
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Update this with your app domain
DOMAIN=localhost
STACK_NAME=full-stack-fastapi-postgresql
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
# Backend
BACKEND_CORS_ORIGINS="[\"http://localhost\", \"http://localhost:4200\", \"http://localhost:3000\", \"http://localhost:8080\", \"https://localhost\", \"https://localhost:4200\", \"https://localhost:3000\", \"https://localhost:8080\"]"
PROJECT_NAME="Full Stack FastAPI PostgreSQL"
SECRET_KEY=changethis
SMTP_TLS=True
SMTP_PORT=587
SMTP_HOST=
SMTP_USER=
SMTP_PASSWORD=
FIRST_SUPERUSER_PASSWORD=changethis
USERS_OPEN_REGISTRATION=False
SENTRY_DSN=
BACKEND_CORS_ORIGINS=["*"]
# Flower
FLOWER_BASIC_AUTH=
# Postgres
POSTGRES_SERVER=db
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changethis
POSTGRES_DB=app
# SQLALCHEMY_DATABASE_URI=
# PgAdmin
PGADMIN_LISTEN_PORT=5050
PGADMIN_DEFAULT_PASSWORD=changethis