-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.deployignore
More file actions
83 lines (49 loc) · 1.12 KB
/
Copy path.deployignore
File metadata and controls
83 lines (49 loc) · 1.12 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
# Deployment Exclusions
# =====================
# These files/folders should NOT be included in production deployment.
# They are only needed for development and build processes.
#
# How to use this:
# ----------------
# - GitHub Pages: Add these patterns to your workflow's exclusion list
# - Netlify: Add to .netlifyignore
# - Vercel: Add to .vercelignore
# - Manual deployment: Don't copy these folders to your server
#
# Excluded items:
# ---------------
# Source files (not needed in production)
routes/
scripts/
src/
\_docs/
# Configuration files
tsconfig.json
package.json
package-lock.json
pug.routes.js
pug.routes.ts
bs-config.cjs
# Build tools
node_modules/
# Git/GitHub
.git/
.github/
.gitignore
# IDE/Editor
.vscode/
.idea/
# Documentation
README.md
MIGRATION.md
LICENSE
# Environment
.env
.env.local
# Keep these in deployment:
# -------------------------
# - \*.html files (your generated pages)
# - css/ folder (compiled styles)
# - js/min/ folder (compiled JavaScript)
# - svg/ and img/ folders (static assets staged from src/ by the deploy workflow)
# - Any other static assets (images, fonts, etc.)