Spaces:
Build error
Build error
Yuta Hayashi
commited on
Commit
·
adb31e2
1
Parent(s):
42a2da4
add .gitignore
Browse files- .gitignore +19 -0
.gitignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Environment variables
|
| 2 |
+
.env
|
| 3 |
+
|
| 4 |
+
# Virtual environment
|
| 5 |
+
.venv/
|
| 6 |
+
|
| 7 |
+
# Python cache files
|
| 8 |
+
__pycache__/
|
| 9 |
+
*.pyc
|
| 10 |
+
|
| 11 |
+
# Lock files
|
| 12 |
+
*.lock
|
| 13 |
+
|
| 14 |
+
# Local configuration
|
| 15 |
+
pyproject.toml
|
| 16 |
+
|
| 17 |
+
# OS generated files
|
| 18 |
+
.DS_Store
|
| 19 |
+
Thumbs.db
|