fix
Browse files- .dockerignore +11 -0
- .gitignore +27 -0
.dockerignore
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.git
|
2 |
+
node_modules
|
3 |
+
__pycache__
|
4 |
+
*.pyc
|
5 |
+
*.pyo
|
6 |
+
*.pyd
|
7 |
+
.env.local
|
8 |
+
.venv
|
9 |
+
env/
|
10 |
+
venv/
|
11 |
+
ENV/
|
.gitignore
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
2 |
+
|
3 |
+
# dependencies
|
4 |
+
/node_modules
|
5 |
+
|
6 |
+
# next.js
|
7 |
+
/.next/
|
8 |
+
/out/
|
9 |
+
|
10 |
+
# production
|
11 |
+
/build
|
12 |
+
|
13 |
+
# debug
|
14 |
+
npm-debug.log*
|
15 |
+
yarn-debug.log*
|
16 |
+
yarn-error.log*
|
17 |
+
.pnpm-debug.log*
|
18 |
+
|
19 |
+
# env files
|
20 |
+
.env*
|
21 |
+
|
22 |
+
# vercel
|
23 |
+
.vercel
|
24 |
+
|
25 |
+
# typescript
|
26 |
+
*.tsbuildinfo
|
27 |
+
next-env.d.ts
|