forked from sleep1223/fast-soy-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
66 lines (55 loc) · 1003 Bytes
/
.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
64
65
66
__pycache__/
.idea/
venv/
.venv/
.vscode/
.ruff_cache/
.pytest_cache/
# Tortoise ORM generated files
.mypy_cache/
*.sqlite3
tortoise_queries.json
tortoise_last.txt
# Aerich migrations
aerich.ini
migrations/
*.log
*.sqlite3*
.DS_Store
._.DS_Store
.pdm-python
web/packages/scripts/node_modules
# Logs
/web/logs
/web/*.log
/web/npm-debug.log*
/web/yarn-debug.log*
/web/yarn-error.log*
/web/pnpm-debug.log*
/web/lerna-debug.log*
/web/node_modules
/web/.DS_Store
/web/dist
/web/dist-ssr
/web/coverage
/web/*.local
/web/cypress/videos/
/web/cypress/screenshots/
# Editor directories and files
/web/.vscode/*
/web/!.vscode/extensions.json
/web/!.vscode/settings.json
/web/!.vscode/launch.json
/web/.idea
/web/*.suo
/web/*.ntvs*
/web/*.njsproj
/web/*.sln
/web/*.sw?
/web/.VSCodeCounter
/web/packages/axios/node_modules/*
/web/packages/color/node_modules/*
/web/packages/hooks/node_modules/*
/web/packages/materials/node_modules/*
/web/packages/ofetch/node_modules/*
web/packages/utils/node_modules/*