This commit is contained in:
119
frontend/linktree-frontend/.dockerignore
Normal file
119
frontend/linktree-frontend/.dockerignore
Normal file
@@ -0,0 +1,119 @@
|
||||
# Dependencies
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# Production build
|
||||
.next/
|
||||
out/
|
||||
build/
|
||||
dist/
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage/
|
||||
.nyc_output/
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Git
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
|
||||
# Documentation
|
||||
README.md
|
||||
*.md
|
||||
docs/
|
||||
|
||||
# CI/CD files
|
||||
.drone.yml
|
||||
.github/
|
||||
.gitlab-ci.yml
|
||||
docker-compose*.yml
|
||||
Dockerfile.dev
|
||||
|
||||
# Testing
|
||||
jest.config.js
|
||||
.jest/
|
||||
__tests__/
|
||||
**/*.test.js
|
||||
**/*.test.ts
|
||||
**/*.test.tsx
|
||||
**/*.spec.js
|
||||
**/*.spec.ts
|
||||
**/*.spec.tsx
|
||||
|
||||
# Linting
|
||||
.eslintrc*
|
||||
.eslintignore
|
||||
.prettierrc*
|
||||
.prettierignore
|
||||
|
||||
# TypeScript
|
||||
*.tsbuildinfo
|
||||
tsconfig.json
|
||||
|
||||
# Storybook
|
||||
.storybook/
|
||||
storybook-static/
|
||||
|
||||
# Temporary folders
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# Backend files (не нужны в frontend контейнере)
|
||||
backend/
|
||||
*.py
|
||||
*.pyc
|
||||
requirements.txt
|
||||
manage.py
|
||||
|
||||
# Development scripts
|
||||
scripts/
|
||||
Makefile
|
||||
|
||||
# Design files
|
||||
design/
|
||||
|
||||
# Cache directories
|
||||
.cache/
|
||||
|
||||
# Vercel
|
||||
.vercel
|
||||
|
||||
# Turbo
|
||||
.turbo
|
||||
Reference in New Issue
Block a user