Files
wordloop/deploy/systemd/wordloop-backend.service
John bd7635986a Initial commit: WordLoop 单词学习应用
Vue 前端 + FastAPI 后端,含部署脚本与词典数据。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-04 14:30:53 -07:00

16 lines
368 B
Desktop File

[Unit]
Description=WordLoop FastAPI backend
After=network.target mysql.service
[Service]
Type=simple
User=www-data
WorkingDirectory=/var/www/wordloop/backend
EnvironmentFile=/var/www/wordloop/backend/.env
ExecStart=/var/www/wordloop/backend/venv/bin/uvicorn main:app --host 127.0.0.1 --port 18004
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target