forked from FinesseStudioLab/Trivela
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
48 lines (42 loc) · 742 Bytes
/
Copy path.dockerignore
File metadata and controls
48 lines (42 loc) · 742 Bytes
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
38
39
40
41
42
43
44
45
46
47
48
**/.git
**/.gitignore
**/.dockerignore
**/Dockerfile
# Local & editor state
**/.DS_Store
**/.idea
**/.vscode
**/*.log
**/.env
**/.env.*
!**/.env.example
# Workspaces / build artifacts that don't need to be in the build context
**/node_modules
**/dist
**/build
**/coverage
**/.cache
**/.turbo
**/.next
**/.parcel-cache
# Rust contracts — not needed for the backend image.
contracts
target
Cargo.lock
**/test_snapshots
# Tests & fixtures
**/__tests__
**/*.test.js
**/*.spec.js
# Frontend — not part of the backend image. The manifest is whitelisted
# because npm needs it to validate the workspaces config.
frontend
!frontend/package.json
# Misc
**/*.md
!backend/README.md
docs
scripts
test-results
playwright-report
storybook-static