Skip to content

Commit 84062e3

Browse files
committed
change .env-example file
1 parent c6a3f92 commit 84062e3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.env-example

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,24 @@
11
#!/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

Comments
 (0)