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 c6a3f92 commit 84062e3Copy full SHA for 84062e3
.env-example
@@ -1 +1,24 @@
1
#!/bin/bash
2
+
3
+#### Django secret key ####
4
+SECRET_KEY=SECRET_KEY
5
6
+#### Django debug mode default True ####
7
+DEBUG=True
8
9
+#### Django allowed hosts default localhost, 127.0.0.1 ####
10
+ALLOWED_HOSTS=localhost,127.0.0.1
11
12
+#### JWT (RS256) private, public keys default ####
13
+PRIVATE_KEY_PATH=security_settings/private_key.pem
14
+PUBLIC_KEY_PATH=security_settings/public_key.pem
15
16
+#### Django database environs sqlite, postgres ####
17
+DATABASE_ENVIRON=sqlite
18
19
+#### PostgreSQL configurations ####
20
+POSTGRES_NAME=POSTGRES_NAME
21
+POSTGRES_USER=POSTGRES_USER
22
+POSTGRES_PASSWORD=POSTGRES_PASSWORD
23
+POSTGRES_HOST=localhost
24
+POSTGRES_PORT=5432
0 commit comments