Spaces:
Build error
Build error
Wisdom Chen
commited on
Update .gitignore
Browse files- .gitignore +12 -42
.gitignore
CHANGED
@@ -1,55 +1,25 @@
|
|
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 |
-
#
|
24 |
-
|
|
|
25 |
env/
|
|
|
26 |
ENV/
|
27 |
|
28 |
-
#
|
29 |
-
.
|
30 |
-
.vscode/
|
31 |
-
*.swp
|
32 |
-
*.swo
|
33 |
-
|
34 |
-
# Environment variables
|
35 |
-
.env
|
36 |
-
|
37 |
-
# Logs
|
38 |
-
*.log
|
39 |
|
40 |
-
#
|
41 |
.DS_Store
|
42 |
Thumbs.db
|
43 |
|
44 |
-
#
|
45 |
-
|
46 |
-
|
47 |
-
*.bin
|
48 |
-
*.h5
|
49 |
-
*.pkl
|
50 |
-
*.model
|
51 |
|
52 |
-
#
|
53 |
-
|
54 |
-
.streamlit/secrets.toml
|
55 |
-
.streamlit/secrets.toml
|
|
|
1 |
# Python
|
2 |
__pycache__/
|
3 |
*.py[cod]
|
|
|
4 |
*.so
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
+
# Environments
|
7 |
+
.env
|
8 |
+
.venv
|
9 |
env/
|
10 |
+
venv/
|
11 |
ENV/
|
12 |
|
13 |
+
# Streamlit
|
14 |
+
.streamlit/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
# OS files
|
17 |
.DS_Store
|
18 |
Thumbs.db
|
19 |
|
20 |
+
# IDE files
|
21 |
+
.vscode/
|
22 |
+
.idea/
|
|
|
|
|
|
|
|
|
23 |
|
24 |
+
# Logs
|
25 |
+
*.log
|
|
|
|