We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddac0d6 commit 4941d5fCopy full SHA for 4941d5f
core/.env.example
@@ -1,2 +1,24 @@
1
-DEBUG=True
2
-SECRET_KEY=SECRET_KEY_VALUE
+DEBUG=on
+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