-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env
56 lines (46 loc) · 1.23 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
49
50
51
52
53
54
55
56
NEMO_VERSION=local
# Build Configurations
DOCKER_REGISTRY=
PIP_REPOSITORY_INDEX_URL=
ALBORZ_RAW_REPOSITORY=
APT_PROXY=
# Nemo Backend Port Mapping
PORTMAPPING_WEB=8000:8000
# Nemo Custom Certificate Configurations
CUSTOM_CERTIFICATES_DIR=./backend/custom-runtime-certificates/
# Nemo Mail Server Configurations
EMAIL_ENABLED=False
EMAIL_HOST=
EMAIL_USE_TLS=
EMAIL_PORT=
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
EMAIL_SENDER_DISPLAY_NAME=
# Nemo Sentry Configurations
SENTRY_REPORTER_ENABLED=False
SENTRY_DSN_BACKEND=
SENTRY_DSN_FRONTEND=
# Nemo Database Configurations
NEMO_DB_HOST=localhost
NEMO_DB_NAME=postgres
NEMO_DB_USER=postgres
NEMO_DB_PASSWORD=test
# Nemo Django Configurations
NEMO_DJANGO_SECRET_KEY=dummy
NEMO_BASE_URL=http://localhost
NEMO_DJANGO_DEBUG=True
NEMO_DJANGO_CORS_ALLOW_ALL=True
DJANGO_LOG_ROOT=./log/
# Nemo Authentication Provider configurations
NEMO_OIDC_ROOT_URL=
NEMO_OIDC_REALM=OIDC-main
NEMO_OIDC_CLIENT=nemo-lab
NEMO_OIDC_SECRET=
# Postgres Configurations
VOLUME_MAPPING_DATABASE_INIT_SCRIPT=
POSTGRES_PASSWORD=test
VOLUME_MAPPING_DATABASE=/var/lib/nemo/postgresql/data:/var/lib/postgresql/data
PORTMAPPING_DATABASE=5432:5432
# Nginx Configuration
PORTMAPPING_NGINX=80:80
PORTMAPPING_NGINX_PROMATHEUS_EXPORTER=9113:9113