docker setup
This commit is contained in:
111
frontend/.dockerignore
Normal file
111
frontend/.dockerignore
Normal file
@@ -0,0 +1,111 @@
|
||||
# -------------------------------
|
||||
|
||||
# Dependency directories
|
||||
|
||||
# -------------------------------
|
||||
|
||||
node_modules/
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Production and build outputs
|
||||
|
||||
# -------------------------------
|
||||
|
||||
dist/
|
||||
out/
|
||||
build/
|
||||
public/build/
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Vite, VuePress, and cache dirs
|
||||
|
||||
# -------------------------------
|
||||
|
||||
.vite/
|
||||
.vitepress/
|
||||
.cache/
|
||||
.tmp/
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Test output and coverage
|
||||
|
||||
# -------------------------------
|
||||
|
||||
coverage/
|
||||
reports/
|
||||
jest/
|
||||
cypress/
|
||||
cypress/screenshots/
|
||||
cypress/videos/
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Environment and config files
|
||||
|
||||
# -------------------------------
|
||||
|
||||
_.env_
|
||||
!.env.production # Keep production env if needed
|
||||
_.local
|
||||
_.log
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# TypeScript artifacts
|
||||
|
||||
# -------------------------------
|
||||
|
||||
\*.tsbuildinfo
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Editor and IDE config
|
||||
|
||||
# -------------------------------
|
||||
|
||||
.vscode/
|
||||
.idea/
|
||||
\*.swp
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# System files
|
||||
|
||||
# -------------------------------
|
||||
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Lockfiles (optional)
|
||||
|
||||
# -------------------------------
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Git files
|
||||
|
||||
# -------------------------------
|
||||
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# -------------------------------
|
||||
|
||||
# Docker-related files
|
||||
|
||||
# -------------------------------
|
||||
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
docker-compose.yml
|
||||
docker-compose.override.yml
|
||||
Reference in New Issue
Block a user