-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.railpackignore
More file actions
107 lines (92 loc) · 1.75 KB
/
Copy path.railpackignore
File metadata and controls
107 lines (92 loc) · 1.75 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Railpack ignore file - exclude unnecessary files from final Docker image
# This dramatically reduces image size and build time
# Git
.git
.gitignore
.gitattributes
# Development & Build Tools
.turbo
.bun
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# IDE & Editor
.vscode
.idea
*.swp
*.swo
.DS_Store
# Documentation
*.md
!README.md
docs/
docs-site/
CHANGELOG*
LICENSE*
CONTRIBUTING*
CODE_OF_CONDUCT*
# Test files
**/*.test.ts
**/*.test.tsx
**/*.spec.ts
**/*.spec.tsx
**/__tests__/
**/test/
**/tests/
coverage/
.nyc_output/
vitest.config.ts
# TypeScript source (not needed at runtime - .output has compiled code)
**/*.ts
!**/*.d.ts
**/*.tsx
tsconfig*.json
# Development configs
.eslintrc*
.prettierrc*
eslint.config.*
prettier.config.*
.editorconfig
biome.json
oxlint.config.*
# Docker files (not needed inside container)
Dockerfile*
# Convex local artifacts
apps/server/.convex
# Next.js / Vite build artifacts (we only need .output)
apps/web/.next
apps/web/out
apps/web/node_modules/.vite
apps/web/node_modules/.cache
# Extension (not deployed to web)
apps/extension/
# Scripts (not needed at runtime)
scripts/
# Package source files (only need compiled output)
packages/*/src/
packages/*/*.ts
# Heavy dev dependencies in node_modules
node_modules/.cache/
node_modules/@types/
node_modules/typescript/
node_modules/@typescript-eslint/
node_modules/eslint*/
node_modules/prettier/
node_modules/@testing-library/
node_modules/vitest/
node_modules/@vitest/
node_modules/jsdom/
node_modules/turbo/
node_modules/@turbo/
node_modules/oxlint/
node_modules/@anthropic-ai/
node_modules/@sentry/
node_modules/@sentry-internal/
node_modules/mermaid/
node_modules/shiki/
node_modules/hugeicons-react/
# Source maps (not needed in production)
**/*.map
**/*.js.map
**/*.mjs.map