Spaces:
Sleeping
Sleeping
Commit ·
923e227
1
Parent(s): c37e1f4
Add .gitignore to exclude pycache, models, venv
Browse filesCo-authored-by: Cursor <cursoragent@cursor.com>
- .gitignore +6 -0
.gitignore
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.pyc
|
| 3 |
+
*.pyo
|
| 4 |
+
.env
|
| 5 |
+
models/
|
| 6 |
+
.venv/
|