You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
365 B
46 lines
365 B
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environment
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment
|
|
.env.local
|
|
.env.production
|
|
|
|
# Database
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Logs
|
|
logs/*.log
|
|
|
|
# Reports
|
|
reports/
|
|
|
|
# Cache
|
|
.cache/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Node (if using Vite)
|
|
node_modules/
|