mirror of
https://github.com/m1ngsama/automa.git
synced 2025-12-24 10:51:20 +00:00
Add .gitignore to exclude sensitive and generated files Add MIT License for open source compliance Following Unix philosophy: clear project boundaries
43 lines
416 B
Text
43 lines
416 B
Text
# Environment files with secrets
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
|
|
# Docker volumes and data
|
|
**/data/
|
|
**/volumes/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
**/logs/
|
|
|
|
# Backups
|
|
*.tar.gz
|
|
*.zip
|
|
backups/
|
|
**/backups/
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# Minecraft specific
|
|
minecraft/world/
|
|
minecraft/world_*/
|
|
minecraft/server.jar
|
|
minecraft/libraries/
|
|
minecraft/.fabric/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|