18 lines
412 B
SYSTEMD
18 lines
412 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=CBPOA FastAPI backend
|
||
|
|
After=network.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=simple
|
||
|
|
User=root
|
||
|
|
WorkingDirectory=/opt/cbpoa/backend
|
||
|
|
Environment=PATH=/opt/cbpoa/backend/.venv/bin:/usr/bin
|
||
|
|
EnvironmentFile=-/opt/cbpoa/backend/.env
|
||
|
|
ExecStart=/opt/cbpoa/backend/.venv/bin/uvicorn main:app --host 127.0.0.1 --port 8000 --workers 1
|
||
|
|
Restart=on-failure
|
||
|
|
RestartSec=5
|
||
|
|
LimitNOFILE=65535
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|