Files
dwroller/.gitignore
Alex a5a6b963fa feat: Add PlayerManagement GM interface and clean repository
- Add comprehensive PlayerManagement component for GMs
- Add all GM API endpoints for player CRUD operations
- Add comprehensive test suite with 14 tests
- Clean up .gitignore to exclude logs, backups, core dumps
- Update README with setup instructions and documentation
- Add setup.sh script for easy project initialization

This provides a complete GM interface for managing players without
the large files that were blocking the previous push.
2025-09-05 11:05:53 +02:00

68 lines
842 B
Plaintext
Executable File

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
/.env
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Ignore all PDF files (prevent including copyrighted book PDFs)
*.pdf
# Log files
*.log
*.log.*
backend.log
server.log
database/backend.log
# Database files (should be created fresh on deployment)
*.db
*.db-*
*.sqlite
*.sqlite3
sqlite/
sqlite-db.db
# Backup and temporary files
*backup*
*temp*
backups/
database/backups/
# Build artifacts with backup names
*.backup.*
*-backup-*
# PM2 logs and runtime files
.pm2/
*.pid
# SQLite WAL files
*.db-shm
*.db-wal
# Core dumps and crash files
core
core.*
*.core
*.dump