Some checks failed
Build and Deploy Next.js Blog to Production / 🔍 Code Quality Checks (push) Failing after 18s
Build and Deploy Next.js Blog to Production / 🏗️ Build and Push Docker Image (push) Has been skipped
Build and Deploy Next.js Blog to Production / 🚀 Deploy to Production (push) Has been skipped
44 lines
411 B
Plaintext
44 lines
411 B
Plaintext
# Git
|
|
.git
|
|
.github
|
|
.gitignore
|
|
|
|
# Dependencies
|
|
node_modules
|
|
|
|
# Next.js
|
|
.next
|
|
out
|
|
|
|
# Environment files
|
|
.env* # Exclude all .env files
|
|
!.env # EXCEPT .env (needed for build from CI/CD)
|
|
!.env.example # Keep example
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
logs/
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
specs/
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.coverage
|
|
.nyc_output
|
|
|
|
# Misc
|
|
*.swp
|
|
*.swo
|
|
*~
|