Spaces:
Sleeping
Sleeping
Commit ·
a322a45
1
Parent(s): 360cc40
toto
Browse files- .dockerignore +40 -0
.dockerignore
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Node.js
|
| 2 |
+
node_modules/
|
| 3 |
+
npm-debug.log
|
| 4 |
+
yarn-error.log
|
| 5 |
+
.pnpm-debug.log
|
| 6 |
+
|
| 7 |
+
# Next.js
|
| 8 |
+
bloom-ware-login/.next/
|
| 9 |
+
bloom-ware-login/out/
|
| 10 |
+
bloom-ware-login/.turbo/
|
| 11 |
+
|
| 12 |
+
# Python
|
| 13 |
+
__pycache__/
|
| 14 |
+
*.py[cod]
|
| 15 |
+
*$py.class
|
| 16 |
+
*.so
|
| 17 |
+
.Python
|
| 18 |
+
venv/
|
| 19 |
+
env/
|
| 20 |
+
.venv
|
| 21 |
+
|
| 22 |
+
# IDE
|
| 23 |
+
.vscode/
|
| 24 |
+
.idea/
|
| 25 |
+
*.swp
|
| 26 |
+
*.swo
|
| 27 |
+
*~
|
| 28 |
+
|
| 29 |
+
# OS
|
| 30 |
+
.DS_Store
|
| 31 |
+
Thumbs.db
|
| 32 |
+
|
| 33 |
+
# Git
|
| 34 |
+
.git/
|
| 35 |
+
.gitignore
|
| 36 |
+
|
| 37 |
+
# 其他
|
| 38 |
+
*.log
|
| 39 |
+
.env.local
|
| 40 |
+
.env.*.local
|