14 lines
576 B
Python
14 lines
576 B
Python
"""Entry point cho daw_engine.exe (PyInstaller — spec desktop 2026-08-08).
|
|
Chạy FastAPI backend trên 127.0.0.1:8000 (Dual-Process Desktop Architecture).
|
|
KHÔNG tự mở browser — Tauri shell (window url=localhost:8000) đảm nhiệm;
|
|
mở browser thủ công khi chạy standalone (bug 09:30: exe mở tab liên tục)."""
|
|
import os
|
|
|
|
os.environ.setdefault("SFDATA_DIR", os.path.join(os.path.expanduser("~"), "SonicForgeDAW"))
|
|
|
|
import uvicorn # noqa: E402
|
|
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("app.main:app", host="127.0.0.1", port=8000, log_level="warning")
|