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
16 lines
268 B
Python
16 lines
268 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Nike — Football Data Platform
|
|
Launch with: python run.py
|
|
"""
|
|
import sys
|
|
import os
|
|
|
|
# Ensure the project root is on sys.path
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
|
|
from nike.server import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|