initial commit
This commit is contained in:
12
settings.py
Normal file
12
settings.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import os
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
# Database
|
||||
PG_LOGIN = os.environ.get('PG_LOGIN')
|
||||
PG_PASSWORD = os.environ.get('PG_PASSWORD')
|
||||
PG_PORT = os.environ.get('PG_PORT')
|
||||
PG_DATABASE = os.environ.get('PG_DATABASE')
|
||||
PG_HOST = os.environ.get('PG_HOST')
|
||||
Reference in New Issue
Block a user