first and real commit

This commit is contained in:
2026-04-25 15:20:23 -06:00
commit a5ed36ef96
15 changed files with 978 additions and 0 deletions

12
main.py Normal file
View File

@@ -0,0 +1,12 @@
import uvicorn
from os import getenv; from dotenv import load_dotenv
load_dotenv('.env_file')
if __name__ == "__main__":
uvicorn.run(
app="api.api:application",
port=int(getenv('PORT')),
host=getenv('HOST'),
reload=True
)