-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
37 lines (30 loc) · 1.57 KB
/
Copy path.dockerignore
File metadata and controls
37 lines (30 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# ── Dependencies (reinstalled during prod build) ──────────────
node_modules/
.pnpm-store/
# ── Dev environment ───────────────────────────────────────────
.devcontainer/
.husky/
# scripts/ contains entrypoint.dev.sh which is only needed at dev time
# (SSH permission fixer for Windows NTFS mounts). Not needed in prod image.
scripts/
# ── Testing ──────────────────────────────────────────────────
coverage/
playwright-report/
test-results/
tests/
# ── Environment & secrets ─────────────────────────────────────
.env
.env.local
.env.*.local
# ── Editor ───────────────────────────────────────────────────
.vscode/
.idea/
.DS_Store
# ── Git ──────────────────────────────────────────────────────
.git/
.gitignore
# ── Logs ─────────────────────────────────────────────────────
*.log
# ── Docs ─────────────────────────────────────────────────────
*.md
docs/