-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.dockerignore
More file actions
56 lines (48 loc) · 805 Bytes
/
Copy path.dockerignore
File metadata and controls
56 lines (48 loc) · 805 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
49
50
51
52
53
54
55
56
# VCS
.git
.github
.gitignore
# Editor / agent metadata
.claude
.agents
.audit
.idea
.vscode
.envrc
.direnv
# Built binaries
/zfaktury
/zfaktury-server
*.exe
*.dll
*.so
*.dylib
# Frontend artifacts (re-built inside the image)
frontend/node_modules
frontend/build
frontend/.svelte-kit
frontend/coverage
# Embedded frontend output (re-generated inside the image; placeholder index.html stays)
web/frontend/build/_app
web/frontend/build/favicon.png
# Go test/coverage
*.test
*.out
coverage.html
/vendor
# Local data and runtime
*.db
*.db-shm
*.db-wal
logs
tmp
config.dev.toml
# Live deployment config (must NEVER be baked into the image — mounted at runtime)
/config.toml
.env
.env.*
# Docs and reports
docs/AGENT-REPORTS
# Nix / Rust sibling project (not needed by Go server build)
shell.nix
rust