mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 04:01:12 +00:00
- 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.
38 lines
596 B
Plaintext
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
|