Skip to content

Commit 4941d5f

Browse files
committed
Update .env.example
1 parent ddac0d6 commit 4941d5f

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

core/.env.example

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
1-
DEBUG=True
2-
SECRET_KEY=SECRET_KEY_VALUE
1+
DEBUG=on
2+
SECRET_KEY=your-secret-key
3+
DATABASE_URL=psql://urser:[email protected]:8458/database
4+
SQLITE_URL=sqlite:///my-local-sqlite.db
5+
CACHE_URL=memcache://127.0.0.1:11211,127.0.0.1:11212,127.0.0.1:11213
6+
REDIS_URL=rediscache://127.0.0.1:6379/1?client_class=django_redis.client.DefaultClient&password=ungithubbed-secret
7+
8+
POSTGRES_DB=pgdb
9+
POSTGRES_USER=pguser
10+
POSTGRES_PASSWORD=pgpassword
11+
POSTGRES_HOST=db
12+
POSTGRES_PORT=5432
13+
14+
MONGO_HOST=localhost
15+
MONGO_PORT=27017
16+
MONGO_DATABASE=database
17+
MONGO_USER=admin
18+
MONGO_PASSWORD=passwd
19+
20+
REDIS_HOST=localhost
21+
REDIS_PORT=6379
22+
23+
RABBITMQ_DEFAULT_USER=user
24+
RABBITMQ_DEFAULT_PASS=password

0 commit comments

Comments
 (0)