Spaces:
Sleeping
Sleeping
update sqlite path
Browse files- Dockerfile +0 -1
- README.md +4 -4
- prodigy.json +7 -0
Dockerfile
CHANGED
|
@@ -7,7 +7,6 @@ RUN --mount=type=secret,id=LICENSE_KEY,mode=0444,required=true \
|
|
| 7 |
pip install --upgrade pip \
|
| 8 |
&& pip install prodigy -f https://$(cat /run/secrets/LICENSE_KEY)@download.prodi.gy
|
| 9 |
# && pip install --trusted-host pypi.python.org -r requirements.txt
|
| 10 |
-
|
| 11 |
# COPY wheel/prodigy-xxx-linux_x86_64.whl ./wheel/
|
| 12 |
# RUN pip install wheel/prodigy-xxx-linux_x86_64.whl \
|
| 13 |
# && rm -rf wheel/prodigy-xxx-linux_x86_64.whl
|
|
|
|
| 7 |
pip install --upgrade pip \
|
| 8 |
&& pip install prodigy -f https://$(cat /run/secrets/LICENSE_KEY)@download.prodi.gy
|
| 9 |
# && pip install --trusted-host pypi.python.org -r requirements.txt
|
|
|
|
| 10 |
# COPY wheel/prodigy-xxx-linux_x86_64.whl ./wheel/
|
| 11 |
# RUN pip install wheel/prodigy-xxx-linux_x86_64.whl \
|
| 12 |
# && rm -rf wheel/prodigy-xxx-linux_x86_64.whl
|
README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
---
|
| 2 |
title: Prodigy
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: docker
|
| 7 |
-
|
| 8 |
---
|
| 9 |
|
| 10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
title: Prodigy
|
| 3 |
+
emoji: ✨
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: black
|
| 6 |
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
---
|
| 9 |
|
| 10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
prodigy.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"port": 7860,
|
| 3 |
"host": "0.0.0.0",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
"feed_overlap": true,
|
| 5 |
"show_stats": true
|
| 6 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"port": 7860,
|
| 3 |
"host": "0.0.0.0",
|
| 4 |
+
"db": "sqlite",
|
| 5 |
+
"db_settings": {
|
| 6 |
+
"sqlite": {
|
| 7 |
+
"name": "prodigy.db",
|
| 8 |
+
"path": "/app"
|
| 9 |
+
}
|
| 10 |
+
},
|
| 11 |
"feed_overlap": true,
|
| 12 |
"show_stats": true
|
| 13 |
}
|