-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
74 lines (62 loc) · 2.27 KB
/
.env.example
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
64
65
66
67
68
69
70
71
72
73
74
# All variables are mandatory
DEBUG=1
# Docker Configuration
HYLODE_UID=500
API_PORT=8301
WEB_PORT=8300
BASEROW_PORT=8302
CACHE_PORT=8303
FLOWER_PORT=8304
REDISINSIGHT_PORT=8309
# API Server Configuration
API_STAR_DSN=postgresql+psycopg2://username:password@host
API_CABOODLE_DSN=mssql+pyodbc://username:password@host
API_CLARITY_DSN=mssql+pyodbc://username:password@host
API_BASEROW_URL=http://baserow:8302
API_BASEROW_PASSWORD=hyui
API_BASEROW_APPLICATION_NAME=hyui
API_BASEROW_USERNAME=hyui
# Original hycastle and hymind on GAE07 5006/5007 respectively
# Current hycastle and hymind on GAE08 5207/5208 respectively
API_HYCASTLE_URL=http://hycastle:1234
API_HYMIND_URL=http://hymind:1234
API_TOWERMAIL_URL=http://towermail:1234
API_ELECTIVES_TAP_URL=http://somehost:1234
API_EMERGENCY_TAP_URL=http://somehost:1234
# Hylode-Bot : slack API hook
API_SLACK_LOG_WEBHOOK=https://hooks.slack.com/services/foo/bar/baz
API_ECHO_SQL=False
# Web Server Configuration
WEB_USERNAME=hyui
WEB_PASSWORD=hyui
WEB_SECRET_KEY=hyui
WEB_API_URL=http://api:8000
WEB_BASEROW_PUBLIC_URL=http://myhost:8302
# Hylode-Bot : slack web hook
WEB_SLACK_LOG_WEBHOOK=https://hooks.slack.com/services/foo/bar/baz
# Baserow Configuration
# =================================================================
BASEROW_PUBLIC_URL=http://myhost:8302
BASEROW_EXTRA_ALLOWED_HOSTS=host.docker.internal,baserow
BASEROW_USERNAME=hyui
BASEROW_PASSWORD=hyui
# Baserow config for building defaults
DB_STAR_DSN=postgresql+psycopg2://username:password@host
DB_CABOODLE_DSN=mssql+pyodbc://username:password@host
# CELERY
# =================================================================
# BE CAREFUL! These same env variables are used by baserow and conflict
# CELERY_BROKER_URL=redis://redis:6379/0
# CELERY_RESULT_BACKEND=redis://redis:6379/0
# HENCE ADD A PREFIX
CELERY_DASH_BROKER_URL=redis://localhost:6379/0
CELERY_DASH_RESULT_BACKEND=redis://localhost:6379/0
# scoping with WEB_ prefix so available when in web.app when background callback manager instantiated
WEB_CELERY_DASH_BROKER_URL=redis://localhost:6379/0
WEB_CELERY_DASH_RESULT_BACKEND=redis://localhost:6379/0
WEB_REDIS_CACHE=redis://localhost:6379/1
# User/Password for basic login
WEB_HYUI_USER=hylode
WEB_HYUI_PASSWORD=hylode