Files
calminer/.gitignore
zwitschi e74ec79cc9
All checks were successful
Run Tests / test (push) Successful in 1m49s
feat: Add staging environment setup guide and configuration files; update .gitignore
2025-10-25 18:01:46 +02:00

48 lines
485 B
Plaintext

# temp files
.DS_Store
# IDE files
.vscode/
.idea/
# Python files
__pycache__/
*.pyc
*.pyo
# Virtual environments
env/
.venv/
# environment variables
.env
*.env
# except example files
!config/*.env.example
# github instruction files
.github/instructions/
# Python packaging artifacts
build/
dist/
*.egg-info/
pip-wheel-metadata/
# Test artifacts
.coverage
coverage.xml
htmlcov/
.pytest_cache/
# Mypy cache
.mypy_cache/
# Logs
*.log
logs/
# SQLite database
*.sqlite3
test*.db