Turns SQL CREATE TABLE scripts into a visual ERD.
- Domain: General
- Core Entity: Domain Record
- Lifecycle Statuses:
new, active, done
- Flask application factory pattern (
app/__init__.py) - Layered backend (
routes→services→repositories) - SQLAlchemy persistence with JSON payload modeling
- REST API + HTML dashboard + CSV exports
- Deployment surfaces (
Dockerfile,docker-compose.yml,Procfile,wsgi.py)
- Role-ready modular architecture (routes, services, repositories)
- Operational dashboard with status metrics and pipeline view
- CRUD workflows via web UI and REST API
- CSV export endpoint for reporting
- Ready for production via Gunicorn, Docker, and Procfile
- Owner (
owner/ text) - Impact Score (
impact_score/ number) - Notes (
notes/ textarea)
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python run.pyGET /api/healthGET /api/schemaGET /api/itemsPOST /api/itemsPUT /api/items/<id>DELETE /api/items/<id>GET /api/metrics