feat: indie status page MVP -- FastAPI + SQLite

- 8 DB models (services, incidents, monitors, subscribers, etc.)
- Full CRUD API for services, incidents, monitors
- Public status page with live data
- Incident detail page with timeline
- API key authentication
- Uptime monitoring scheduler
- 13 tests passing
- TECHNICAL_DESIGN.md with full spec
This commit is contained in:
IndieStatusBot 2026-04-25 05:00:00 +00:00
commit 902133edd3
4655 changed files with 1342691 additions and 0 deletions

57
pyproject.toml Normal file
View file

@ -0,0 +1,57 @@
[project]
name = "indie-status-page"
version = "0.1.0"
description = "Lightweight, affordable status page tool for indie SaaS developers"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"fastapi>=0.110,<1.0",
"uvicorn[standard]>=0.27,<1.0",
"starlette>=0.36,<1.0",
"sqlalchemy[asyncio]>=2.0,<3.0",
"aiosqlite>=0.19,<1.0",
"alembic>=1.13,<2.0",
"pydantic>=2.5,<3.0",
"pydantic-settings>=2.1,<3.0",
"python-multipart>=0.0.6,<1.0",
"jinja2>=3.1,<4.0",
"apscheduler>=3.10,<4.0",
"httpx>=0.27,<1.0",
"typer>=0.9,<1.0",
"rich>=13.0,<14.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9.0",
"pytest-asyncio>=0.23,<1.0",
"httpx>=0.27,<1.0",
"ruff>=0.2,<1.0",
"mypy>=1.8,<2.0",
]
[project.scripts]
statuspage = "app.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
strict = true