
- Move development and test files to dev/ directory - Update .gitignore to exclude development files - Update paths in configuration files - Add new audio-player.js for frontend
97 lines
1.0 KiB
Plaintext
97 lines
1.0 KiB
Plaintext
# Bytecode files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.bak
|
|
*.swp
|
|
*.tmp
|
|
|
|
# Node.js dependencies
|
|
node_modules/
|
|
package.json
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Development documentation
|
|
PERFORMANCE-TESTING.md
|
|
|
|
# Build and distribution
|
|
dist/
|
|
build/
|
|
*.min.js
|
|
*.min.css
|
|
*.map
|
|
|
|
# Testing
|
|
coverage/
|
|
*.test.js
|
|
*.spec.js
|
|
.nyc_output/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Development directory
|
|
dev/
|
|
|
|
# Configuration files
|
|
alembic.ini
|
|
*.ini
|
|
*.conf
|
|
*.config
|
|
*.yaml
|
|
*.yml
|
|
*.toml
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Local development
|
|
.cache/
|
|
.temp/
|
|
.tmp/
|
|
|
|
# Project specific
|
|
data/*
|
|
!data/.gitignore
|
|
|
|
log/*
|
|
!log/.gitignore
|
|
|
|
streams/*
|
|
!streams/.gitignore
|
|
|
|
# Test files
|
|
tests/**/*.js
|
|
!tests/*.test.js
|
|
!tests/*.spec.js
|
|
!tests/README.md
|
|
!tests/profile-auth.js
|
|
|
|
# Performance test results
|
|
performance-results/*
|
|
!performance-results/.gitkeep
|
|
|
|
# Legacy files
|
|
public_streams.txt
|