Files
Mace-AIO-Discord-Bot---With…/.gitignore
TheOnlyMace b4110c3d66
Some checks failed
CI / Bot (Python) (push) Failing after 49s
CI / Dashboard (Next.js) (push) Failing after 11s
Update project configuration files, and API routes accordingly. Add SQLite runtime file ignores to .gitignore for better file management.
2026-07-21 17:11:38 +02:00

71 lines
730 B
Plaintext

/myenv
dashboard/node_modules
dashboard/.next
# Ignore Python cache
__pycache__/
*.py[cod]
*$py.class
# Ignore virtual environments
venv/
.venv/
env/
ENV/
# Ignore IDE files
.vscode/
.idea/
*.swp
*.swo
# Ignore OS files
.DS_Store
Thumbs.db
# Ignore logs
*.log
# Ignore build outputs
dist/
build/
# Ignore temporary files
*.tmp
*.temp
# Ignore Python packaging
*.egg-info/
.Python
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore environment variables
.env
.env.local
.env.*.local
# Ignore SQLite runtime files
bot/db/**/*.db-journal
# Ignore node_modules
node_modules/
package-lock.json
# Ignore Next.js build output
.next/
out/
# Ignore Python cache
__pycache__/
*.pyc
*.pyo
*.pyd
*.zip
*.rar