Add backend dir and base files, upd gitignore

This commit is contained in:
d3m0k1d
2025-11-21 22:20:37 +03:00
parent e0c206cfc5
commit 790d530263
4 changed files with 299 additions and 1 deletions

8
backend/main.py Normal file
View File

@@ -0,0 +1,8 @@
import fastapi
import uvicorn
app = fastapi.FastAPI()
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)