62 lines
565 B
Plaintext
62 lines
565 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
recticel/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# Backup files
|
|
backup/
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Application specific
|
|
instance/*.db
|
|
chrome_extension/
|
|
VS code/
|
|
tray/
|
|
|
|
# Scripts not needed in container
|
|
*.sh
|
|
!docker-entrypoint.sh
|
|
|
|
# Service files
|
|
*.service
|
|
|
|
# Config that will be generated
|
|
instance/external_server.conf
|