43 lines
583 B
Plaintext
43 lines
583 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Build output (rebuilt inside the image)
|
|
dist
|
|
dist-ssr
|
|
build
|
|
.cache
|
|
|
|
# The admin panel is a separate app — not part of the frontend build
|
|
panel
|
|
|
|
# Dependencies (reinstalled in the image)
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Editor / OS
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
|
|
# Env (never bake secrets into the image)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Docker — keep Dockerfile in the context (Liara builds from it)
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Misc
|
|
*.log
|
|
coverage
|
|
.eslintcache
|