forked from build-admin/buildadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
63 lines (57 loc) · 1.08 KB
/
.gitignore
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
# 通过 Git 部署项目至线上时建议删除的忽略规则
/vendor
/modules
/public/*.lock
/public/index.html
/public/assets
# 通过 Git 部署项目至线上时可以考虑删除的忽略规则
/public/storage/*
composer.lock
pnpm-lock.yaml
package-lock.json
yarn.lock
# common
/nbproject
/runtime/*
/install
node_modules
dist
dist-ssr
.DS_Store
/.env
Desktop.ini
# 部署到线上时,如果您已经删除了 /modules 的忽略规则,那么以下规则可以帮您排除多余的模块文件(已知的多余/重复文件)
# 请勿在已经忽略以下文件[夹]的环境下卸载模块,该操作将导致未知异常!
/modules/ebak
/modules/*/app
/modules/*/config
/modules/*/extend
/modules/*/public
/modules/*/vendor
/modules/*/web
/modules/*/web-nuxt
/modules/*/install.sql
/modules/*/config.json
/modules/*/LICENSE
/modules/*/README.md
/modules/*/uniapp.zip
# Log files
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
!/web/.vscode
# Other
*.css.map
*.local
!.gitkeep
.svn