initial gitea commit

This commit is contained in:
Lucas Jensen
2024-06-26 19:19:20 -07:00
commit e830445d02
47 changed files with 10936 additions and 0 deletions

10
server/run.py Normal file
View File

@@ -0,0 +1,10 @@
import os
import uvicorn
from main import app
from dotenv import load_dotenv
if __name__ == "__main__":
load_dotenv()
port = int(os.getenv("PORT", 5050))
uvicorn.run(app, port=port)