# Git .git .gitignore # Python __pycache__ *.pyc *.pyo *.pyd .Python venv/ env/ .venv pip-log.txt pip-delete-this-directory.txt .tox/ .coverage .coverage.* .cache *.egg-info/ .pytest_cache/ # Node node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Project specific logs/ *.log .env .env.* !.env.production *.db *.sqlite /tmp /temp test_*.py tests/ # Documentation *.md !README.md docs/ # CI/CD .github/ .gitlab-ci.yml .travis.yml # Development files deploy.sh Makefile docker-compose.override.yml