Complete implementation ready for Coolify: - Node.js 22 + Fastify + socket.io backend - PostgreSQL 16 + Redis 7 services - Docker Compose configuration - Deployment scripts and documentation Co-Authored-By: Paperclip <noreply@paperclip.ing>
58 lines
504 B
Text
58 lines
504 B
Text
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build outputs
|
|
dist
|
|
coverage
|
|
*.tsbuildinfo
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.forgejo
|
|
.github
|
|
.gitlab-ci.yml
|
|
|
|
# Documentation
|
|
docs
|
|
README.md
|
|
*.md
|
|
!package.json
|
|
|
|
# Tests
|
|
test
|
|
*.test.ts
|
|
*.spec.ts
|
|
vitest.config.ts
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
compose*.yml
|
|
.dockerignore
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|