added .gitignore and .env for test push
Browse files- .gitignore +96 -0
.gitignore
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
pip-wheel-metadata/
|
20 |
+
share/python-wheels/
|
21 |
+
*.egg-info/
|
22 |
+
.installed.cfg
|
23 |
+
*.egg
|
24 |
+
MANIFEST
|
25 |
+
|
26 |
+
# Virtual Environment
|
27 |
+
venv/
|
28 |
+
env/
|
29 |
+
ENV/
|
30 |
+
.venv/
|
31 |
+
.env/
|
32 |
+
|
33 |
+
# Environment Variables
|
34 |
+
.env
|
35 |
+
.env.local
|
36 |
+
.env.*.local
|
37 |
+
|
38 |
+
# IDE/Editor
|
39 |
+
.vscode/
|
40 |
+
.idea/
|
41 |
+
*.swp
|
42 |
+
*.swo
|
43 |
+
*~
|
44 |
+
|
45 |
+
# OS
|
46 |
+
.DS_Store
|
47 |
+
.DS_Store?
|
48 |
+
._*
|
49 |
+
.Spotlight-V100
|
50 |
+
.Trashes
|
51 |
+
ehthumbs.db
|
52 |
+
Thumbs.db
|
53 |
+
|
54 |
+
# Logs
|
55 |
+
*.log
|
56 |
+
logs/
|
57 |
+
|
58 |
+
# Jupyter Notebook
|
59 |
+
.ipynb_checkpoints
|
60 |
+
|
61 |
+
# Model files (if large)
|
62 |
+
*.bin
|
63 |
+
*.safetensors
|
64 |
+
*.onnx
|
65 |
+
*.h5
|
66 |
+
*.pkl
|
67 |
+
*.joblib
|
68 |
+
|
69 |
+
# Temporary files
|
70 |
+
*.tmp
|
71 |
+
*.temp
|
72 |
+
temp/
|
73 |
+
tmp/
|
74 |
+
|
75 |
+
# Cache directories
|
76 |
+
.cache/
|
77 |
+
.pytest_cache/
|
78 |
+
.coverage
|
79 |
+
htmlcov/
|
80 |
+
|
81 |
+
# Gradio/Streamlit specific
|
82 |
+
gradio_cached_examples/
|
83 |
+
.streamlit/
|
84 |
+
|
85 |
+
# Hugging Face specific
|
86 |
+
.huggingface/
|
87 |
+
wandb/
|
88 |
+
|
89 |
+
# Local database
|
90 |
+
*.db
|
91 |
+
*.sqlite3
|
92 |
+
|
93 |
+
# Secrets and keys
|
94 |
+
secrets.toml
|
95 |
+
*.pem
|
96 |
+
*.key
|