| 1 | # Python |
| 2 | __pycache__/ |
| 3 | *.py[cod] |
| 4 | *$py.class |
| 5 | *.so |
| 6 | .Python |
| 7 | *.egg-info/ |
| 8 | dist/ |
| 9 | build/ |
| 10 | *.egg |
| 11 | |
| 12 | # Virtual environments |
| 13 | .venv/ |
| 14 | venv/ |
| 15 | ENV/ |
| 16 | env/ |
| 17 | |
| 18 | # IDE |
| 19 | .vscode/ |
| 20 | .idea/ |
| 21 | *.swp |
| 22 | *.swo |
| 23 | *~ |
| 24 | |
| 25 | # Git |
| 26 | .git/ |
| 27 | .gitignore |
| 28 | .gitattributes |
| 29 | |
| 30 | # Documentation |
| 31 | docs/* |
| 32 | !docs/images/ |
| 33 | !docs/FAQ*.md |
| 34 | *.md |
| 35 | !README.md |
| 36 | |
| 37 | # Plans and development files |
| 38 | plans/ |
| 39 | repositories/ |
| 40 | examples/ |
| 41 | |
| 42 | # Test files |
| 43 | test_*.py |
| 44 | tests/ |
| 45 | *.log |
| 46 | |
| 47 | # Output and temporary files |
| 48 | output/* |
| 49 | !output/.gitkeep |
| 50 | temp/ |
| 51 | *.tmp |
| 52 | |
| 53 | # User data (will be mounted) |
| 54 | data/users/* |
| 55 | !data/.gitkeep |
| 56 | |
| 57 | # Config (will be mounted) |
| 58 | config.yaml |
| 59 | config.yaml.bak |
| 60 | config.example.yaml |
| 61 | |
| 62 | # macOS |
| 63 | .DS_Store |
| 64 | .AppleDouble |
| 65 | .LSOverride |
| 66 | |
| 67 | # Misc |
| 68 | *.bak |
| 69 | restart_web.sh |
| 70 | start_web.sh |
| 71 | |
| 72 |