CarPeAs commited on
Commit
c9df8a2
1 Parent(s): 378c8a1

agregando .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +21 -0
.gitignore ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ignore Python cache files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Ignore Jupyter Notebook checkpoints
7
+ .ipynb_checkpoints
8
+
9
+ # Ignore specific environments
10
+ env/
11
+ venv/
12
+ .venv/
13
+
14
+ # Ignore system files
15
+ .DS_Store
16
+ Thumbs.db
17
+
18
+ # Ignore other sensitive or unnecessary files
19
+ *.log
20
+ *.sqlite3
21
+