Skip to content

Commit 9d57ff2

Browse files
committed
chore: create/update dockerignore
1 parent e6f3a89 commit 9d57ff2

File tree

4 files changed

+217
-3
lines changed

4 files changed

+217
-3
lines changed

src/forge/.dockerignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Version control
2+
.git
3+
.gitignore
4+
5+
# Go build cache and test files
6+
*.test
7+
*.out
8+
/tmp
9+
10+
# IDE and editor files
11+
.vscode
12+
.idea
13+
*.swp
14+
*.swo
15+
16+
# Logs
17+
*.log
18+
19+
# OS generated files
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Application specific
24+
/vendor
25+
/bin
26+
/dist
27+
28+
# Docker related
29+
Dockerfile
30+
docker-compose.yml
31+
32+
# Test and documentation
33+
/tests
34+
README.md
35+
*.md
36+
37+
.air.toml
38+
39+
# Environment files
40+
.env
41+
*.env
42+
43+
# Makefile (since you're using it for local development)
44+
Makefile
45+
46+
47+
# Any other build or temporary directories
48+
/build
49+
/temp

src/launchpad/.dockerignore

+70-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,73 @@
1+
# Dependencies
12
node_modules
2-
npm-debug.log
3+
.pnpm-store
4+
5+
# Version control
6+
.git
7+
.gitignore
8+
9+
# Documentation
10+
*.md
11+
LICENSE
12+
13+
# Build outputs
14+
dist
15+
build
16+
out
17+
18+
# Development and debug files
19+
.vscode
20+
.idea
21+
*.log
22+
npm-debug.log*
23+
pnpm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# Environment and configuration files
28+
.env*
29+
.env.local
30+
.env.development.local
31+
.env.test.local
32+
.env.production.local
33+
34+
# Cache directories
35+
.cache
36+
.npm
37+
.pnpm
38+
39+
# Test directories
40+
__tests__
41+
test
42+
tests
43+
coverage
44+
45+
# OS files
46+
.DS_Store
47+
Thumbs.db
48+
49+
# Temporary files
50+
*.swp
51+
*.swo
52+
*~
53+
54+
# Project specific
55+
.eslintrc*
56+
.prettierrc*
57+
.editorconfig
58+
tsconfig.json
59+
tsconfig.build.json
60+
.eslintignore
61+
.prettierignore
62+
*.tsbuildinfo
63+
64+
# Docker related
365
Dockerfile
66+
docker-compose.yml
467
.dockerignore
5-
.git
6-
.gitignore
68+
69+
# Misc
70+
*.lock
71+
*.log
72+
*.bak
73+
*.tmp

src/logify/.dockerignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Version control
2+
.git
3+
.gitignore
4+
5+
# Go build cache and test files
6+
*.test
7+
*.out
8+
/tmp
9+
10+
# IDE and editor files
11+
.vscode
12+
.idea
13+
*.swp
14+
*.swo
15+
16+
# Logs
17+
*.log
18+
19+
# OS generated files
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Application specific
24+
/vendor
25+
/bin
26+
/dist
27+
28+
# Docker related
29+
Dockerfile
30+
docker-compose.yml
31+
32+
# Test and documentation
33+
/tests
34+
README.md
35+
*.md
36+
37+
.air.toml
38+
39+
# Environment files
40+
.env
41+
*.env
42+
43+
# Makefile (since you're using it for local development)
44+
Makefile
45+
46+
47+
# Any other build or temporary directories
48+
/build
49+
/temp

src/proxy/.dockerignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Version control
2+
.git
3+
.gitignore
4+
5+
# Go build cache and test files
6+
*.test
7+
*.out
8+
/tmp
9+
10+
# IDE and editor files
11+
.vscode
12+
.idea
13+
*.swp
14+
*.swo
15+
16+
# Logs
17+
*.log
18+
19+
# OS generated files
20+
.DS_Store
21+
Thumbs.db
22+
23+
# Application specific
24+
/vendor
25+
/bin
26+
/dist
27+
28+
# Docker related
29+
Dockerfile
30+
docker-compose.yml
31+
32+
# Test and documentation
33+
/tests
34+
README.md
35+
*.md
36+
37+
.air.toml
38+
39+
# Environment files
40+
.env
41+
*.env
42+
43+
# Makefile (since you're using it for local development)
44+
Makefile
45+
46+
47+
# Any other build or temporary directories
48+
/build
49+
/temp

0 commit comments

Comments
 (0)