ab-ms-core / app /Makefile
MukeshKapoor25's picture
Add initial project structure with FastAPI, Docker, and SQL Server integration
5fa5dc7
raw
history blame contribute delete
209 Bytes
start:
docker-compose up --build
stop:
docker-compose down
migrate:
alembic upgrade head
lint:
ruff app/
typecheck:
mypy app/
test:
pytest app/tests/unit
test-integration:
pytest app/tests/integration