Commit
·
8bcfc64
1
Parent(s):
a6ac935
add git ignore
Browse files- .gitignore +13 -0
.gitignore
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# .gitignore
|
| 2 |
+
|
| 3 |
+
# Python virtual environment
|
| 4 |
+
venv/
|
| 5 |
+
/venv/
|
| 6 |
+
*.pyc
|
| 7 |
+
__pycache__/
|
| 8 |
+
|
| 9 |
+
# Environment variables
|
| 10 |
+
.env
|
| 11 |
+
|
| 12 |
+
# VS Code settings
|
| 13 |
+
.vscode/
|