.gitignore
· 756 B · Text
Неформатований
# Dependencies
node_modules/
docker-compose.yml
package-lock.json
# Environment variables — never commit these
.env
# Runtime data — server-specific, never commit
data/config.json
data/characters.json
data/accounts.json
data/poll-state.json
data/usermap.json
data/wrank.json
data/bringer.json
data/attendance.json
data/sessionPreferences.json
data/tg-history/
# Emoji data
emoji-uploads/
# Tests
tests/
# Keep the data directory structure but not the contents
!data/.gitkeep
!data/tg-history/.gitkeep
# Messages — user-specific files stay local
messages/users/
# Keep the users directory structure
!messages/users/.gitkeep
# TypeScript build output
dist/
# Logs
*.log
npm-debug.log*
# OS files
.DS_Store
Thumbs.db
# Editor
.vscode/
.idea/
| 1 | # Dependencies |
| 2 | node_modules/ |
| 3 | |
| 4 | docker-compose.yml |
| 5 | package-lock.json |
| 6 | |
| 7 | # Environment variables — never commit these |
| 8 | .env |
| 9 | |
| 10 | # Runtime data — server-specific, never commit |
| 11 | data/config.json |
| 12 | data/characters.json |
| 13 | data/accounts.json |
| 14 | data/poll-state.json |
| 15 | data/usermap.json |
| 16 | data/wrank.json |
| 17 | data/bringer.json |
| 18 | data/attendance.json |
| 19 | data/sessionPreferences.json |
| 20 | data/tg-history/ |
| 21 | |
| 22 | # Emoji data |
| 23 | emoji-uploads/ |
| 24 | |
| 25 | # Tests |
| 26 | tests/ |
| 27 | |
| 28 | # Keep the data directory structure but not the contents |
| 29 | !data/.gitkeep |
| 30 | !data/tg-history/.gitkeep |
| 31 | |
| 32 | # Messages — user-specific files stay local |
| 33 | messages/users/ |
| 34 | |
| 35 | # Keep the users directory structure |
| 36 | !messages/users/.gitkeep |
| 37 | |
| 38 | # TypeScript build output |
| 39 | dist/ |
| 40 | |
| 41 | # Logs |
| 42 | *.log |
| 43 | npm-debug.log* |
| 44 | |
| 45 | # OS files |
| 46 | .DS_Store |
| 47 | Thumbs.db |
| 48 | |
| 49 | # Editor |
| 50 | .vscode/ |
| 51 | .idea/ |