Minimal Python HTTP canary site proving that big-release and the bigbase-deploy GitHub Action still work end-to-end.
Live: https://python.bigbase.click
- Python 3.12+
- Flask
- Managed with uv
| Action | Command |
|---|---|
| Run | uv run python -m bigbase_canary_python.app |
| Test | uv run pytest -q |
| Build | uv build |
| Lint | uv run ruff check . |
| Typecheck | uv run mypy src/ |
| Preflight | uv run ruff check . && uv run mypy src/ && uv run pytest -q |
src/bigbase_canary_python/app.py — one Flask route reads the VERSION file at request time and renders it into an HTML footer. No persistence, no auth, no routing beyond the single route.