Files
logos-web/.dockerignore
jinhojang6 afb28862c8 feat(migrations): add initial migration for database schema setup
- Created initial migration file to set up the database schema with necessary tables and types.
- Added migration index file to register the new migration.
- Introduced a production-ready Docker Compose configuration for deploying the CMS with a self-hosted PostgreSQL database.
2026-05-29 08:55:41 +09:00

38 lines
596 B
Plaintext

# Keep the Docker build context small and reproducible.
# pnpm-lock.yaml + sources are needed; everything below is not.
# Dependencies (reinstalled inside the image)
**/node_modules
.pnpm-store
**/.pnpm-store
# Build outputs / caches
**/.next
**/out
**/dist
**/build
**/.turbo
**/coverage
**/*.tsbuildinfo
# VCS / CI
.git
.github
# Local env files — secrets are injected at runtime via docker-compose, never baked
**/.env
**/.env.*
!**/.env.example
# Vercel
**/.vercel
# Editor / OS noise
**/.DS_Store
.claude
# Docker files themselves
**/Dockerfile
**/.dockerignore
docker-compose*.yml