61baf3ac5d
- Update next.config.ts - Add netlify.toml, Docker configs, e2e tests - Add env templates, docs (README, ROADMAP, TODO) - Add vitest/playwright test configs - Add component and lib tests - Add install script, portainer env template - Update .gitignore (tsbuildinfo, deno.lock, dev.db)
61 lines
648 B
Plaintext
61 lines
648 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
.opencode/memories.md
|
|
|
|
# Build outputs
|
|
dist/
|
|
.next/
|
|
.netlify/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Secrets (DO NOT COMMIT)
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.sql
|
|
!infrastructure/postgres/init.sql
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Deno (not used in this project)
|
|
deno.lock
|
|
|
|
# SQLite dev database
|
|
prisma/dev.db
|
|
prisma/dev.db-journal
|
|
|
|
# Claude (workspace config, not project code)
|
|
.claude/*
|
|
!.claude/commands/
|
|
|
|
# Netlify
|
|
.functions/ |