Create .gitignore
Browse files- .gitignore +58 -0
.gitignore
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# Distribution / packaging
|
7 |
+
.Python
|
8 |
+
env/
|
9 |
+
venv/
|
10 |
+
ENV/
|
11 |
+
env.bak/
|
12 |
+
venv.bak/
|
13 |
+
dist/
|
14 |
+
build/
|
15 |
+
eggs/
|
16 |
+
*.egg-info/
|
17 |
+
.installed.cfg
|
18 |
+
*.egg
|
19 |
+
|
20 |
+
# Logs
|
21 |
+
*.log
|
22 |
+
|
23 |
+
# Temporary files
|
24 |
+
*.tmp
|
25 |
+
*.temp
|
26 |
+
*.bak
|
27 |
+
|
28 |
+
# IDE and editor specific files
|
29 |
+
.vscode/
|
30 |
+
.idea/
|
31 |
+
*.swp
|
32 |
+
*.swo
|
33 |
+
|
34 |
+
# Jupyter Notebook checkpoints
|
35 |
+
.ipynb_checkpoints
|
36 |
+
|
37 |
+
# Pytest cache
|
38 |
+
__pycache__/
|
39 |
+
*.cover
|
40 |
+
.cache
|
41 |
+
.pytest_cache/
|
42 |
+
|
43 |
+
# Coverage reports
|
44 |
+
coverage.xml
|
45 |
+
*.cover
|
46 |
+
*.py,cover
|
47 |
+
*.log
|
48 |
+
|
49 |
+
# Gradio specific files
|
50 |
+
*.tmp
|
51 |
+
*.jpg
|
52 |
+
*.jpeg
|
53 |
+
*.png
|
54 |
+
*.gif
|
55 |
+
|
56 |
+
# Any local environment variables
|
57 |
+
.env
|
58 |
+
*.env
|