Skip to content

Commit 7ceb092

Browse files
committed
update
1 parent 294cce4 commit 7ceb092

File tree

7 files changed

+2075
-33
lines changed

7 files changed

+2075
-33
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
.DS_Store
2+
node_modules/
3+
dist/
4+
logs/
5+
build/
6+
SQL/
7+
*.venv/
8+
课件资料/
9+
LobeChat/
10+
.parcel-cache/
11+
.ipynb_checkpoints/
12+
__pycache__/
13+
14+
# */.git/ 用于忽略在根.git仓库管理目录下的所有子.git仓库管理能力(因为在一个.git仓库下不能再出现.git仓库,否则会报错误),但同时,不会影响各个子目录下的.git仓库管理能力!
15+
*/.git/
16+
17+
# local env files
18+
.env.local
19+
.env.*.local
20+
21+
22+
# Log files
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
pnpm-debug.log*
27+
28+
# Editor directories and files
29+
.idea
30+
.vscode
31+
*.suo
32+
*.log
33+
*.ntvs*
34+
*.njsproj
35+
*.sln
36+
*.sw?
37+
*.zip
38+
*.rar

0 commit comments

Comments
 (0)