Spaces:
Sleeping
Sleeping
Update
Browse files- .dockerignore +107 -0
- .gitignore +2 -0
- .python-version +1 -0
.dockerignore
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python cache and build artifacts
|
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 |
+
MANIFEST
|
23 |
+
|
24 |
+
# Virtual environments
|
25 |
+
.env
|
26 |
+
.venv
|
27 |
+
env/
|
28 |
+
venv/
|
29 |
+
ENV/
|
30 |
+
env.bak/
|
31 |
+
venv.bak/
|
32 |
+
|
33 |
+
# IDE and editor files
|
34 |
+
.vscode/
|
35 |
+
.idea/
|
36 |
+
*.swp
|
37 |
+
*.swo
|
38 |
+
*~
|
39 |
+
|
40 |
+
# OS generated files
|
41 |
+
.DS_Store
|
42 |
+
.DS_Store?
|
43 |
+
._*
|
44 |
+
.Spotlight-V100
|
45 |
+
.Trashes
|
46 |
+
ehthumbs.db
|
47 |
+
Thumbs.db
|
48 |
+
|
49 |
+
# Git
|
50 |
+
.git/
|
51 |
+
.gitignore
|
52 |
+
.gitattributes
|
53 |
+
|
54 |
+
# Documentation
|
55 |
+
README.md
|
56 |
+
*.md
|
57 |
+
docs/
|
58 |
+
|
59 |
+
# Test files
|
60 |
+
tests/
|
61 |
+
test_*
|
62 |
+
*_test.py
|
63 |
+
.pytest_cache/
|
64 |
+
.coverage
|
65 |
+
htmlcov/
|
66 |
+
.tox/
|
67 |
+
|
68 |
+
# Logs
|
69 |
+
*.log
|
70 |
+
logs/
|
71 |
+
|
72 |
+
# Temporary files
|
73 |
+
*.tmp
|
74 |
+
*.temp
|
75 |
+
tmp/
|
76 |
+
temp/
|
77 |
+
|
78 |
+
# Model checkpoints (these should be downloaded at runtime or mounted)
|
79 |
+
checkpoints/
|
80 |
+
|
81 |
+
# Local development files
|
82 |
+
.env.local
|
83 |
+
.env.development
|
84 |
+
.env.test
|
85 |
+
|
86 |
+
# UV cache (will be handled by Docker layer caching)
|
87 |
+
.uv/
|
88 |
+
|
89 |
+
# Docker files
|
90 |
+
Dockerfile*
|
91 |
+
docker-compose*.yml
|
92 |
+
.dockerignore
|
93 |
+
|
94 |
+
# CI/CD
|
95 |
+
.github/
|
96 |
+
.gitlab-ci.yml
|
97 |
+
.travis.yml
|
98 |
+
.circleci/
|
99 |
+
|
100 |
+
# Large files that shouldn't be in container
|
101 |
+
*.mp4
|
102 |
+
*.avi
|
103 |
+
*.mov
|
104 |
+
*.mkv
|
105 |
+
*.h264
|
106 |
+
*.h265
|
107 |
+
recordings/
|
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
./packages
|
2 |
+
./checkpoints
|
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.12
|