feat: add Docker support and database migrations

- Created Dockerfile for building and running the application with Uvicorn.
- Added docker-compose.yml to manage application and PostgreSQL service.
- Introduced Alembic migrations with initial schema for CRM domain objects.
- Configured async SQLAlchemy engine for migrations.
- Updated dependencies in uv.lock to include asyncpg, passlib, and pyjwt.
This commit is contained in:
k1nq
2025-11-22 14:51:20 +05:00
parent 95a9961549
commit a97a76381f
9 changed files with 529 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Generic Alembic environment to manage database schema migrations.