mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
94 lines
918 B
Text
94 lines
918 B
Text
|
|
# Python
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.so
|
||
|
|
*.egg
|
||
|
|
*.egg-info/
|
||
|
|
dist/
|
||
|
|
build/
|
||
|
|
.Python
|
||
|
|
pip-log.txt
|
||
|
|
pip-delete-this-directory.txt
|
||
|
|
.tox/
|
||
|
|
.coverage
|
||
|
|
.coverage.*
|
||
|
|
.cache
|
||
|
|
coverage.xml
|
||
|
|
*.cover
|
||
|
|
.hypothesis/
|
||
|
|
.pytest_cache/
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# Virtual Environments
|
||
|
|
venv/
|
||
|
|
env/
|
||
|
|
ENV/
|
||
|
|
.venv/
|
||
|
|
.ENV/
|
||
|
|
virtualenv/
|
||
|
|
|
||
|
|
# IDEs
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
.DS_Store
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
|
||
|
|
# Environment files (we'll copy only what's needed)
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
docs/
|
||
|
|
README*
|
||
|
|
|
||
|
|
# Tests
|
||
|
|
tests/
|
||
|
|
test/
|
||
|
|
*_test.py
|
||
|
|
test_*.py
|
||
|
|
|
||
|
|
# CI/CD
|
||
|
|
.github/
|
||
|
|
.gitlab-ci.yml
|
||
|
|
.travis.yml
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
*.tmp
|
||
|
|
tmp/
|
||
|
|
temp/
|
||
|
|
|
||
|
|
# Database
|
||
|
|
*.db
|
||
|
|
*.sqlite
|
||
|
|
*.sqlite3
|
||
|
|
|
||
|
|
# Notebooks
|
||
|
|
*.ipynb
|
||
|
|
.ipynb_checkpoints/
|
||
|
|
notebooks/
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile
|
||
|
|
docker-compose*.yml
|
||
|
|
docker-compose*.yaml
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Other unnecessary files for production
|
||
|
|
*.bak
|
||
|
|
*.orig
|
||
|
|
.editorconfig
|
||
|
|
.pre-commit-config.yaml
|
||
|
|
pyproject.toml
|
||
|
|
setup.cfg
|
||
|
|
Makefile
|
||
|
|
scripts/
|
||
|
|
migrations/alembic.ini
|