mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
|
DOMAIN=localhost
|
||
|
# DOMAIN=local.dockertoolbox.tiangolo.com
|
||
|
# DOMAIN=localhost.tiangolo.com
|
||
|
# DOMAIN=dev.felicity.com
|
||
|
|
||
|
STACK_NAME=felicity-com
|
||
|
|
||
|
TRAEFIK_PUBLIC_NETWORK=traefik-public
|
||
|
TRAEFIK_TAG=felicity.com
|
||
|
TRAEFIK_PUBLIC_TAG=traefik-public
|
||
|
|
||
|
DOCKER_IMAGE_BACKEND=lims_backend
|
||
|
DOCKER_IMAGE_CELERYWORKER=lims_celeryworker
|
||
|
DOCKER_IMAGE_FRONTEND=lims_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", "http://dev.felicity.com", "https://stag.felicity.com", "https://felicity.com", "http://local.dockertoolbox.tiangolo.com", "http://localhost.tiangolo.com"]
|
||
|
PROJECT_NAME=felicity
|
||
|
SECRET_KEY=88d08895c7ddd073af5a7d284a9f58a55391ff66755814af98b693064c2aec77
|
||
|
FIRST_SUPERUSER=admin@felicity.com
|
||
|
FIRST_SUPERUSER_PASSWORD=admin
|
||
|
SMTP_TLS=True
|
||
|
SMTP_PORT=587
|
||
|
SMTP_HOST=
|
||
|
SMTP_USER=
|
||
|
SMTP_PASSWORD=
|
||
|
EMAILS_FROM_EMAIL=info@felicity.com
|
||
|
|
||
|
USERS_OPEN_REGISTRATION=False
|
||
|
|
||
|
SENTRY_DSN=
|
||
|
|
||
|
# Flower
|
||
|
FLOWER_BASIC_AUTH=admin:admin
|
||
|
|
||
|
# Postgres
|
||
|
POSTGRES_SERVER=db
|
||
|
POSTGRES_USER=postgres
|
||
|
POSTGRES_PASSWORD=felicity
|
||
|
POSTGRES_DB=app
|
||
|
|
||
|
# PgAdmin
|
||
|
PGADMIN_LISTEN_PORT=5050
|
||
|
PGADMIN_DEFAULT_EMAIL=admin@felicity.com
|
||
|
PGADMIN_DEFAULT_PASSWORD=admin
|