initial commit

This commit is contained in:
2024-02-25 06:01:35 +03:00
commit bd0100cd21
27 changed files with 395 additions and 0 deletions

12
settings.py Normal file
View 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')