- Added Codecov configuration to enforce 75% coverage. - Created .dockerignore to exclude unnecessary files from Docker context. - Implemented GitHub Actions CI workflow for linting, testing, and coverage reporting. - Added a workflow to propagate changes between main and development branches. - Configured pre-commit hooks for code quality checks. - Developed a multi-stage Dockerfile for a Python web backend. - Added MIT License to the project. - Created README.md with project overview and setup instructions. - Implemented a script to create GitHub issues from project planning. - Defined development and runtime requirements in requirements.txt and requirements.dev.txt.
16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
# Base runtime requirements - adapt to your stack.
|
|
# Example for a Python FastAPI backend. Remove or replace if using Go/Node/etc.
|
|
|
|
fastapi>=0.100.0
|
|
uvicorn[standard]>=0.22.0
|
|
pydantic>=2.0
|
|
sqlalchemy>=2.0
|
|
alembic>=1.11
|
|
python-dotenv>=1.0
|
|
passlib[bcrypt]>=1.7
|
|
httpx>=0.24
|
|
requests>=2.31
|
|
python-multipart>=0.0.6
|
|
|
|
# Add additional runtime libs below
|