35 lines
436 B
Plaintext
35 lines
436 B
Plaintext
|
|
# Source control
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Build output (rebuilt inside container)
|
||
|
|
.next
|
||
|
|
out
|
||
|
|
|
||
|
|
# Dependencies (reinstalled inside container)
|
||
|
|
node_modules
|
||
|
|
|
||
|
|
# Local secrets — never bake into image
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
.env*.local
|
||
|
|
|
||
|
|
# Dev / tooling
|
||
|
|
npm-debug.log*
|
||
|
|
yarn-debug.log*
|
||
|
|
yarn-error.log*
|
||
|
|
|
||
|
|
# Generated / large files
|
||
|
|
graphify-out
|
||
|
|
coverage
|
||
|
|
.vercel
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Docker files themselves
|
||
|
|
Dockerfile
|
||
|
|
.dockerignore
|
||
|
|
docker-compose*.yml
|