- Create multi-stage Dockerfile with node:20-alpine - Add .dockerignore for optimized build context - Create Kubernetes manifests (deployment, service, ingress, secret) - Add health check endpoint at /api/health - Configure next.config.ts with standalone output - Add comprehensive deployment documentation in README-DEPLOY.md Story: 4.1 - Criar Dockerfile e Manifests Kubernetes para Deploy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
541 B
Plaintext
59 lines
541 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build output
|
|
.next
|
|
out
|
|
|
|
# Environment files (nunca incluir secrets)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# BMAD Core
|
|
.bmad-core
|
|
|
|
# Documentation
|
|
docs
|
|
*.md
|
|
!README-DEPLOY.md
|
|
|
|
# Tests
|
|
**/__tests__
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
vitest.config.ts
|
|
vitest.setup.ts
|
|
|
|
# Development
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# Temporary files
|
|
tmp
|
|
.tmp
|
|
*.log
|
|
|
|
# MCP
|
|
.mcp.json
|
|
.playwright-mcp
|
|
|
|
# Claude
|
|
.claude
|
|
|
|
# Images (exceto public)
|
|
image.png
|
|
image*.png
|
|
|
|
# Scripts
|
|
scripts
|