Initial commit

This commit is contained in:
2025-10-13 15:00:54 +09:00
committed by 이민규
commit 3201c9e9f6
43 changed files with 5126 additions and 0 deletions

5
backend/run.py Normal file
View File

@@ -0,0 +1,5 @@
import uvicorn
from app.main import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)