There was an error while loading. Please reload this page.
2 parents 5d1f2fd + 0476734 commit 77801a3Copy full SHA for 77801a3
1 file changed
.dockerignore
@@ -0,0 +1,52 @@
1
+# Version control
2
+.git
3
+.gitignore
4
+.github
5
+
6
+# Dependencies (installed fresh in Docker build)
7
+node_modules
8
9
+# Build output (rebuilt in Docker)
10
+dist
11
12
+# Test files
13
+tests
14
+src/test
15
+*.test.ts
16
+*.spec.ts
17
+vitest.config.*
18
19
+# Environment files
20
+.env
21
+.env.*
22
23
+# Logs
24
+*.log
25
+logs
26
27
+# Development config files
28
+.eslintrc*
29
+eslint.config.*
30
+tsconfig*.json
31
+drizzle.config.*
32
+fix-routes.js
33
+Makefile
34
35
+# Docker files (not needed inside the image)
36
+Dockerfile
37
+docker-compose.yml
38
+.dockerignore
39
40
+# Editor and OS files
41
+.vscode
42
+.idea
43
+*.swp
44
+*.swo
45
+.DS_Store
46
+Thumbs.db
47
48
+# Kiro IDE
49
+.kiro
50
51
+# README
52
+README.md
0 commit comments