-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path.env.template
More file actions
24 lines (19 loc) · 935 Bytes
/
.env.template
File metadata and controls
24 lines (19 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Server Configuration
ALLOWED_HOSTS='*'
SECRET_KEY='pbv(g=%7$$4rzvl88e24etn57-%n0uw-@y*=7ak422_3!zrc9+'
# This is set up to use the PostGIS container spun up by docker-compose
# in the root of this repository. If you are using a different database, you will
# need to update the DATABASE_URL variable below.
DATABASE_URL=postgres://postgres:postgres@db:5432/shareabouts
# This is set up to use the Redis container spun up by docker-compose
# in the root of this repository. If you are using a different Redis instance, you will
# need to update the REDIS_URL variable below.
REDIS_URL=redis://redis:6379/
# This is the superuser account that will be created when the database is initialized.
DJANGO_SUPERUSER_PASSWORD=admin
DJANGO_SUPERUSER_USERNAME=admin
DJANGO_SUPERUSER_EMAIL=admin@example.com
# Number of Celery workers to run.
WORKERS=4
# Set to True to enable debug mode. This should only be used in development.
DEBUG=True