4b07ca86b9
- Updated .gitignore to properly exclude Python cache files and environment variables - Modified bot.py to improve prefix case handling for better command recognition - Refactored mail.py to streamline feedback email generation and database interaction - Added environment variable loading in mail.py for better configuration management
61 lines
564 B
Plaintext
61 lines
564 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Discord bot specific
|
|
config.json
|
|
token.txt
|
|
logs/
|
|
*.log
|
|
*.log.*
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
.cache/
|
|
*time.txt
|
|
|
|
# Cache files
|
|
*.cache
|
|
__pycache__/
|
|
|
|
# Python
|
|
*.pyc
|
|
.pytest_cache/
|
|
.coverage
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
|
|
# Web interface
|
|
web/static/uploads/
|
|
web/static/cache/
|
|
|
|
# System
|
|
.DS_Store
|
|
._* |