mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-24 22:36:38 +02:00
- Generate SSH deployment key (Ed25519) for server access - Define complete server infrastructure (ProxmoxVE VM, Docker, networking) - Create ACCESS.md with all connection details and SSH instructions - Create INFRASTRUCTURE.md with VM setup guide and service architecture - Set up project directory structure per briefing specification - Add .env.example with all required environment variables - Add .gitignore for Node.js/Docker/TypeScript project - Create comprehensive README.md for developer onboarding - Add Summarize.md changelog - Include concept and briefing documents Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
63 lines
730 B
Text
63 lines
730 B
Text
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Environment (NIEMALS committen!)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker volumes (lokal)
|
|
docker-data/
|
|
postgres-data/
|
|
redis-data/
|
|
media-uploads/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# Prisma
|
|
packages/core-service/prisma/*.db
|
|
packages/core-service/prisma/*.db-journal
|
|
|
|
# Generated Prisma Client
|
|
packages/core-service/node_modules/.prisma/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Certificates (generierte Zertifikate, nicht die CA-Config)
|
|
config/step-ca/secrets/
|
|
config/step-ca/db/
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
!config/step-ca/*.example
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|