# Git .git .gitignore # Spug spug/ # Python __pycache__/ *.py[cod] *$py.class *.so .Python venv/ env/ *.egg-info/ .eggs/ # Node node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* # IDE .vscode/ .idea/ *.swp *.swo # OS .DS_Store Thumbs.db # Logs backend/logs/ *.log # Database *.db *.sqlite # Docker Dockerfile.backend Dockerfile.frontend docker-compose.yml # Documentation *.md docs/ # Test tests/ pytest_cache/