-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
58 lines (52 loc) · 1.79 KB
/
.env.example
File metadata and controls
58 lines (52 loc) · 1.79 KB
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
# ============================================
# APPLICATION
# ============================================
export API_PORT=8001
export RULES_APP_PORT=8002
export NICEGUI_SECRET=expenseboard-secret-change-me
export PYTHONPATH=.
export NAME=StatementParser
export ENVIRONMENT=development
export TIMEZONE=Asia/Kolkata
export CURRENCY=INR
export FERNET_KEY=yxxxx==
# ============================================
# DATABASE CONFIGURATION
# ============================================
export DATABASE_TYPE=postgres
export DATABASE_VERSION=17
export DATABASE_USER=superset
export DATABASE_PASSWORD=superset
export DATABASE_HOST=192.168.153.156
export DATABASE_PORT=5432
export DATABASE_EXTERNAL_PORT=5432
export DATABASE_NAME=superset
# ============================================
# CELERY CONFIGURATION
# ============================================
export CELERY_USE_DB=false
export CELERY_BROKER_URL=redis://superset_redis:6379/0
export CELERY_BACKEND_URL=redis://superset_redis:6379/1
export CELERY_DEFAULT_QUEUE=statement_q
export CELERY_LOG_LEVEL=INFO
export FLOWER_USER=admin
export FLOWER_PASSWORD=StrongPassword123
# ============================================
# REDIS CONFIGURATION
# ============================================
export REDIS_VERSION=7
export REDIS_HOST=superset_redis
export REDIS_PORT=6379
export REDIS_URL=redis://superset_redis:6379/2
# ============================================
# SUPERSET CONFIGURATION
# ============================================
export SUPERSET_IMAGE=superset-custom
export SUPERSET_PORT=8088
export SUPERSET_ENV=production
export SUPERSET_SECRET_KEY=changeme
# ============================================
# NETWORK CONFIGURATION
# ============================================
export SHARED_NETWORK_NAME=shared_network