Introduces the Go photo-api service, nginx/systemd deploy wiring, and Next.js gallery/lightbox pages so event photos can be managed and browsed. Co-authored-by: Cursor <cursoragent@cursor.com>
69 lines
687 B
Plaintext
69 lines
687 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
dist/
|
|
.next/
|
|
.next-build/
|
|
out/
|
|
build/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
backend/data/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
!.env.example
|
|
!**/.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Runtime uploads / user-generated content
|
|
backend/uploads/
|
|
|
|
# Tooling
|
|
.turbo/
|
|
.cursor/
|
|
.agents/
|
|
skills-lock.json
|
|
.npm-cache/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Go photo-api service
|
|
photo-api/bin/
|
|
photo-api/data/
|
|
|
|
# Misc
|
|
*.pem
|
|
|
|
# Documentation (internal)
|
|
about/
|