- Fix backend process dying immediately after startup - Change from 'python -m app.main' to 'uvicorn app.main:app' - Remove reload mode for stable background operation - Resolve 'connect ECONNREFUSED 127.0.0.1:8000' error Problem: - Backend used reload=settings.DEBUG mode - reload mode conflicts with nohup background running - Process management became unstable - Backend service stopped immediately after startup Solution: - Use uvicorn command directly without reload - Single process mode, stable background operation - Suitable for production environment Files: - start.sh: updated backend startup command - docs/BACKEND_FIX.md: fix documentation
3.7 KiB
Executable File
3.7 KiB
Executable File