-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
63 lines (50 loc) · 1.3 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
57
58
59
60
61
62
63
# Do not edit this file directly! You can override one or more of these
# variables by defining them directly in the shell.
# main settings
APP_VERSION=0.2.0
APP_NAME=myworkshop
APP_SITE_NAME=My Workshop
APP_DOMAIN=example.com
APP_LANGUAGE_CODE=en
# reverse-proxy settings
NGINX_VERSION=1.21
NGINX_CLIENT_MAX_BODY_SIZE=100M
NGINX_HOST_PORT=8080
# core settings
CORE_SECRET_KEY=Very_Insecure_Secret_Key
CORE_SUPERUSER_USERNAME=admin
CORE_SUPERUSER_PASSWORD=admin
CORE_GUNICORN_WORKERS=3
CORE_GUNICORN_LOG_LEVEL=INFO
CORE_HOST_PORT_DEV=8081
# brocker settings
RABBITMQ_VERSION=3.9
RABBITMQ_DEFAULT_VHOST=my_vhost
RABBITMQ_DEFAULT_USER=guest
RABBITMQ_DEFAULT_PASS=guest
RABBITMQ_HOST_PORT_DEV=5672
RABBITMQ_MANAGEMENT_HOST_PORT=15672
# core-db settings
POSTGRES_VERSION=14.2
POSTGRES_DB=postgres
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_HOST_PORT_DEV=5432
# cache settings
REDIS_VERSION=6.2
REDIS_HOST_PORT_DEV=6379
# email settings
EMAIL_HOST=smtp.example.com
EMAIL_PORT=587
EMAIL_HOST_PASSWORD=password
EMAIL_USE_TLS=True
EMAIL_USE_SSL=False
# frontend settings
FRONTEND_NODE_VERSION=18.0
FRONTEND_HOST_PORT_DEV=3000
# mapping to current user in dev mode
DOCKER_USER_NAME=docker_user
DOCKER_USER_UID=1000
DOCKER_USER_GID=1000