Initial commit: Tasteby - YouTube restaurant map service
Backend (FastAPI + Oracle ADB), Frontend (Next.js), daemon worker. Features: channel/video/restaurant management, semantic search, Google OAuth, user reviews. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
9
backend/run_api.py
Normal file
9
backend/run_api.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""Run the FastAPI server."""
|
||||
|
||||
from dotenv import load_dotenv
|
||||
load_dotenv()
|
||||
|
||||
import uvicorn
|
||||
|
||||
if __name__ == "__main__":
|
||||
uvicorn.run("api.main:app", host="0.0.0.0", port=8000, reload=True)
|
||||
Reference in New Issue
Block a user