Add complete Nike football data platform with: - FastMCP server exposing football data tools over HTTP - RapidAPI client for free-api-live-football-data integration - Bootstrap web dashboard with live match/standings views - REST API endpoints for dashboard consumption - Docker support with multi-stage build - Comprehensive README with architecture docs - Minimal .gitignore replacing verbose Python template
18 lines
356 B
Desktop File
18 lines
356 B
Desktop File
[Unit]
|
|
Description=Nike Football Data Platform (MCP + Dashboard)
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=robert
|
|
WorkingDirectory=/home/robert/gitea/nike
|
|
ExecStart=/home/robert/gitea/nike/venv/bin/python run.py
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=nike
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|