Newer
Older
gnexus-book / systemd / gnexus-book-backend.service
[Unit]
Description=Gnexus Book API (FastAPI)
After=network.target

[Service]
Type=simple
WorkingDirectory=/home/ubuntu/gnexus-book/server
ExecStart=/home/ubuntu/gnexus-book/server/.venv/bin/python -m uvicorn app.main:app --host 0.0.0.0 --port 8000
Restart=on-failure
RestartSec=5

[Install]
WantedBy=default.target