- Implemented SvelteKit frontend with authentication callback handling. - Created demo routes and paraglide localization functionality. - Added health check and entrypoint scripts for backend services. - Established PostgreSQL and Keycloak initialization scripts with health checks. - Introduced models for database schema using SQLAlchemy. - Configured Vite and SvelteKit for development and testing environments. - Added health check script to verify service statuses and resource usage. - Created Docker entrypoint scripts for seamless service startup.
39 lines
633 B
Plaintext
39 lines
633 B
Plaintext
# Core Framework
|
|
fastapi==0.119.0
|
|
uvicorn[standard]==0.37.0
|
|
pydantic==2.12.3
|
|
pydantic[email]==2.12.3
|
|
pydantic-settings==2.11.0
|
|
|
|
# Database
|
|
sqlalchemy==2.0.44
|
|
alembic==1.17.0
|
|
psycopg2-binary==2.9.11
|
|
asyncpg==0.30.0
|
|
|
|
# Authentication & Authorization
|
|
python-keycloak==5.8.1
|
|
python-jose[cryptography]==3.5.0
|
|
passlib[bcrypt]==1.7.4
|
|
|
|
# HTTP & API
|
|
httpx==0.28.1
|
|
requests==2.32.5
|
|
|
|
# Utilities
|
|
python-multipart==0.0.20
|
|
python-dotenv==1.1.1
|
|
tenacity==9.1.2
|
|
|
|
# Monitoring & Logging
|
|
prometheus-client==0.23.1
|
|
python-json-logger==4.0.0
|
|
|
|
# Development
|
|
pytest==8.4.2
|
|
pytest-asyncio==1.2.0
|
|
pytest-cov==7.0.0
|
|
black==25.9.0
|
|
flake8==7.3.0
|
|
mypy==1.18.2
|