-
Notifications
You must be signed in to change notification settings - Fork 1
/
.local.env
30 lines (24 loc) · 897 Bytes
/
.local.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
# Postgres
# ------------------------------------------------------------------------------
POSTGRES_DB=shop_webapp
POSTGRES_USER=shop_webapp
POSTGRES_PASSWORD=shop_webapp_secret
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
# Django
# ------------------------------------------------------------------------------
DJANGO_SUPERUSER_USERNAME=shop_webapp_su
DJANGO_SUPERUSER_PASSWORD=shop_webapp_su_secret
DJANGO_SUPERUSER_EMAIL="monika@marysia.app"
USE_LEGACY_DB=truecrea
# Docker
# ------------------------------------------------------------------------------
USE_DOCKER=false
# Redis
# ------------------------------------------------------------------------------
REDIS_URL=redis://redis:6379/0
# Celery
# ------------------------------------------------------------------------------
# Flower
CELERY_FLOWER_USER=SET_CELERY_FLOWER_USER!!!
CELERY_FLOWER_PASSWORD=SET_CELERY_FLOWER_PASSWORD!!!