85 lines
957 B
Plaintext
85 lines
957 B
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*
|
|
|
|
# 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
|