返回 AiToEarn
.gitignore
根目录 / .gitignore
1 # Logs
2 *.log
3 npm-debug.log*
4 yarn-debug.log*
5 yarn-error.log*
6 pnpm-debug.log*
7 lerna-debug.log*
8
9 node_modules
10 dist
11 dist-ssr
12 dist-electron
13 release
14 *.local
15 .vscode
16 # Editor directories and files
17 .vscode/.debug.env
18 .idea
19 .DS_Store
20 *.suo
21 *.ntvs*
22 *.njsproj
23 *.sln
24 *.sw?
25 # .env
26
27 #lockfile
28 # package-lock.json
29 # pnpm-lock.yaml
30 # yarn.lock
31 /test-results/
32 /playwright-report/
33 /playwright/.cache/
34
35 # 忽略所有.db文件
36 *.db
37
38 # 忽略所有.exe文件
39 *.exe
40
41 # 忽略/public/bin目录下的非.md文件
42 public/bin/*
43 !public/bin/webkit
44 !public/bin/*.md
45
46 sh/*
47 project/web/.cursor/
48
48 lines Plain Text