mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 23:43:01 +08:00
46 lines
1.2 KiB
Bash
46 lines
1.2 KiB
Bash
DOMAIN=localhost
|
|
# 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
|
|
|
|
# Setup data
|
|
LOAD_SETUP_DATA=False
|
|
|
|
# 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",]
|
|
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
|