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:
commit
902133edd3
4655 changed files with 1342691 additions and 0 deletions
18
venv/lib/python3.11/site-packages/setuptools/modified.py
Normal file
18
venv/lib/python3.11/site-packages/setuptools/modified.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
try:
|
||||
# Ensure a DistutilsError raised by these methods is the same as distutils.errors.DistutilsError
|
||||
from distutils._modified import (
|
||||
newer,
|
||||
newer_group,
|
||||
newer_pairwise,
|
||||
newer_pairwise_group,
|
||||
)
|
||||
except ImportError:
|
||||
# fallback for SETUPTOOLS_USE_DISTUTILS=stdlib, because _modified never existed in stdlib
|
||||
from ._distutils._modified import (
|
||||
newer,
|
||||
newer_group,
|
||||
newer_pairwise,
|
||||
newer_pairwise_group,
|
||||
)
|
||||
|
||||
__all__ = ['newer', 'newer_pairwise', 'newer_group', 'newer_pairwise_group']
|
||||
Loading…
Add table
Add a link
Reference in a new issue