KUNAL SHAW commited on
Commit ·
8a136a0
0
Parent(s):
chore: add .gitignore
Browse files- .gitignore +22 -0
.gitignore
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
env/
|
| 7 |
+
venv/
|
| 8 |
+
.venv/
|
| 9 |
+
|
| 10 |
+
# Streamlit / IDE
|
| 11 |
+
.streamlit/
|
| 12 |
+
.vscode/
|
| 13 |
+
|
| 14 |
+
# Secrets and credentials
|
| 15 |
+
.env
|
| 16 |
+
*.json
|
| 17 |
+
cs23b1039@iiitr.ac.in-token.json
|
| 18 |
+
*.sqlite
|
| 19 |
+
.DS_Store
|
| 20 |
+
|
| 21 |
+
# Logs
|
| 22 |
+
*.log
|