- 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
8 lines
260 B
Python
Executable file
8 lines
260 B
Python
Executable file
#!/home/ubuntu/wealth-engine/indie-status-page/venv/bin/python3.11
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from dotenv.__main__ import cli
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cli())
|