refacto: rename app into backend, to prepare for frontend dev
This commit is contained in:
parent
017092040d
commit
e605bf8603
32 changed files with 2 additions and 2 deletions
13
server/backend/api.py
Normal file
13
server/backend/api.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import uvicorn
|
||||
|
||||
from core.logging import setup_logging
|
||||
|
||||
setup_logging()
|
||||
|
||||
if __name__ == "__main__":
|
||||
uvicorn.run(
|
||||
"adapters.http.main:app",
|
||||
host="0.0.0.0",
|
||||
port=8000,
|
||||
reload=False,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue