Executor-Tyrant-Framework commited on
Commit
f21d5d3
·
verified ·
1 Parent(s): e0d9a99

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +57 -0
.gitignore ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ venv/
25
+ env/
26
+ ENV/
27
+ .venv
28
+
29
+ # IDE
30
+ .vscode/
31
+ .idea/
32
+ *.swp
33
+ *.swo
34
+ *~
35
+
36
+ # ChromaDB
37
+ /workspace/chroma_db/
38
+ *.chroma
39
+
40
+ # Repository clones (will be mounted/cloned at runtime)
41
+ /workspace/e-t-systems/
42
+
43
+ # Gradio
44
+ flagged/
45
+ gradio_cached_examples/
46
+
47
+ # Secrets
48
+ .env
49
+ *.pem
50
+ *.key
51
+
52
+ # OS
53
+ .DS_Store
54
+ Thumbs.db
55
+
56
+ # Logs
57
+ *.log