All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Add Dockerfile with multi-stage standalone build - Add Woodpecker CI pipeline (.woodpecker.yml) - Add Kubernetes manifests for deployment, service, ingress - Add ops.md with deployment documentation - Configure Next.js for standalone output - Move deployment files to root level Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
252 B
Plaintext
27 lines
252 B
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Dependencies (will be installed fresh in container)
|
|
blog/node_modules/
|
|
|
|
# Build output
|
|
blog/.next/
|
|
blog/out/
|
|
|
|
# Dev files
|
|
blog/.env*
|
|
*.log
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Docs
|
|
*.md
|
|
!blog/content/**/*.md
|
|
|
|
# Claude
|
|
.claude/
|