ai-career-coach / main.py
Nikolay Angelov
fix the app
a666cd9
raw
history blame contribute delete
291 Bytes
import uvicorn
from app import app
def main():
"""
Run the FastAPI server with integrated Gradio UI
"""
port = 7860
host = "0.0.0.0"
print(f"Starting server on {host}:{port}...")
uvicorn.run(app, host=host, port=port)
if __name__ == "__main__":
main()