mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-09 05:06:44 +10:00
63 lines
565 B
Plaintext
63 lines
565 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
yarn.lock
|
|
|
|
# Frontend build
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Alembic - Keep migration files but not pycache
|
|
backend/alembic/versions/__pycache__/
|
|
|
|
# Data directories
|
|
data/
|
|
*.mp3
|
|
*.m4a
|
|
*.flac
|
|
*.wav
|
|
*.ogg
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Docker
|
|
.dockerignore
|