Files
Charon/.dockerignore
Wikid82 4f3b7d8f99 feat: Initial project setup with CI/CD, Docker, and issue creation script
- 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.
2025-11-17 15:52:40 -05:00

28 lines
244 B
Plaintext

.git
.gitignore
node_modules
venv
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env/
build/
dist/
*.egg-info
.DS_Store
.idea/
.vscode/
.env
.env.*
coverage/
.coverage
.pytest_cache/
*.log
*.sqlite3
# Docker
docker-compose.override.yml
**/Dockerfile.*