First Commit

- Added a script with all FastAPI methods
- Added a main.py file to start everything
- Generated a config that grabs data from .env
This commit is contained in:
2025-08-30 02:39:49 +03:00
commit 1df815f8c9
7 changed files with 507 additions and 0 deletions

9
src/config.py Normal file
View File

@ -0,0 +1,9 @@
from decouple import config
db_name = config('DB_NAME')
postgres_user = config('POSTGRES_USER')
postgres_password = config('POSTGRES_PASSWORD')
host_name = config('HOST_NAME')
port = config('PORT')
logging_level = config('LOGGING_LEVEL')