Spaces:
Sleeping
Sleeping
Commit ·
175aef4
1
Parent(s): 725b792
chore: add .gitignore to exclude sensitive files
Browse files- .gitignore +15 -0
.gitignore
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.env
|
| 2 |
+
.env.local
|
| 3 |
+
.env.*.local
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.py[cod]
|
| 6 |
+
*$py.class
|
| 7 |
+
.ipynb_checkpoints/
|
| 8 |
+
.DS_Store
|
| 9 |
+
node_modules/
|
| 10 |
+
dist/
|
| 11 |
+
build/
|
| 12 |
+
*.log
|
| 13 |
+
results/
|
| 14 |
+
.vscode/
|
| 15 |
+
.idea/
|