mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 03:39:32 +00:00
61 lines
No EOL
725 B
Text
61 lines
No EOL
725 B
Text
#dockflare/.dockerignore
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.DS_Store
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
*.manifest
|
|
*.spec
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Docker specific
|
|
Dockerfile.original
|
|
docker-compose.yml.original
|
|
|
|
# IDE / OS files
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Node / JS build files
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Environment files
|
|
.env
|
|
env.example # Keep example, but ignore actual .env
|
|
env/
|
|
venv/ |