# Git .git .gitignore .gitattributes # Python __pycache__ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Virtual Environment venv/ .venv/ ENV/ env/ .env # IDE .vscode/ .idea/ *.swp *.swo *~ .DS_Store # Testing .pytest_cache/ .coverage htmlcov/ .tox/ .nox/ # Logs *.log logs/ # Documentation *.md !README.md docs/ # Docker Dockerfile docker-compose*.yml .dockerignore # CI/CD .github/ .gitlab-ci.yml Jenkinsfile # Temporary files *.tmp *.bak *.orig .cache/ # OS files Thumbs.db .DS_Store # Database files (lokálne) *.db *.sqlite *.sqlite3 # Extension (nie je potrebné v backend image) ebook_extension/ # Backup files *.backup backup_*.sql