- server/: FastAPI app with SQLAlchemy models for sops, work_packages, comments - Endpoints for SOP/WP upsert+list+get+delete and comment create+list; /api/feedback kept as an alias so the existing client keeps working - Portable across engines (PostgreSQL prod, SQLite dev fallback) - requirements.txt, .env.example, and server/README.md (Postgres + systemd) - NGINX now proxies /api/ to the API (replaces the Power Automate hop; comments persist to SQL) - Rewrite DEPLOYMENT.md for the API + database architecture - Add .gitignore for venv/.env/sqlite Phase 2 (wire the client apps to the API) is next. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
fastapi>=0.110
|
|
uvicorn[standard]>=0.29
|
|
gunicorn>=21.2
|
|
sqlalchemy>=2.0
|
|
psycopg[binary]>=3.1
|
|
pydantic>=2.6
|
|
python-dotenv>=1.0
|