Spaces:
Running
Running
Renaming to coding_lab
Browse files- {rmscript_app β coding_lab}/__init__.py +1 -1
- {rmscript_app β coding_lab}/main.py +0 -0
- {rmscript_app β coding_lab}/static/app.js +0 -0
- {rmscript_app β coding_lab}/static/index.html +0 -0
- {rmscript_app β coding_lab}/static/reachy-hacker.png +0 -0
- {rmscript_app β coding_lab}/static/style.css +0 -0
- index.html +2 -2
- pyproject.toml +4 -4
{rmscript_app β coding_lab}/__init__.py
RENAMED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""
|
| 2 |
|
| 3 |
from .main import RmscriptApp
|
| 4 |
|
|
|
|
| 1 |
+
"""Coding Lab - Web IDE for Reachy Mini scripting."""
|
| 2 |
|
| 3 |
from .main import RmscriptApp
|
| 4 |
|
{rmscript_app β coding_lab}/main.py
RENAMED
|
File without changes
|
{rmscript_app β coding_lab}/static/app.js
RENAMED
|
File without changes
|
{rmscript_app β coding_lab}/static/index.html
RENAMED
|
File without changes
|
{rmscript_app β coding_lab}/static/reachy-hacker.png
RENAMED
|
File without changes
|
{rmscript_app β coding_lab}/static/style.css
RENAMED
|
File without changes
|
index.html
CHANGED
|
@@ -132,7 +132,7 @@ look right</pre>
|
|
| 132 |
} catch (e) {
|
| 133 |
console.error('Error fetching app name:', e);
|
| 134 |
}
|
| 135 |
-
return '
|
| 136 |
}
|
| 137 |
|
| 138 |
function showStatus(type, message) {
|
|
@@ -170,7 +170,7 @@ look right</pre>
|
|
| 170 |
method: 'POST',
|
| 171 |
headers: { 'Content-Type': 'application/json' },
|
| 172 |
body: JSON.stringify({
|
| 173 |
-
name: appName || '
|
| 174 |
source_kind: 'hf_space',
|
| 175 |
url: spaceUrl,
|
| 176 |
description: 'Web app for programming Reachy Mini with RMScript language',
|
|
|
|
| 132 |
} catch (e) {
|
| 133 |
console.error('Error fetching app name:', e);
|
| 134 |
}
|
| 135 |
+
return 'coding_lab';
|
| 136 |
}
|
| 137 |
|
| 138 |
function showStatus(type, message) {
|
|
|
|
| 170 |
method: 'POST',
|
| 171 |
headers: { 'Content-Type': 'application/json' },
|
| 172 |
body: JSON.stringify({
|
| 173 |
+
name: appName || 'coding_lab',
|
| 174 |
source_kind: 'hf_space',
|
| 175 |
url: spaceUrl,
|
| 176 |
description: 'Web app for programming Reachy Mini with RMScript language',
|
pyproject.toml
CHANGED
|
@@ -3,9 +3,9 @@ requires = ["setuptools>=61.0"]
|
|
| 3 |
build-backend = "setuptools.build_meta"
|
| 4 |
|
| 5 |
[project]
|
| 6 |
-
name = "
|
| 7 |
version = "0.1.0"
|
| 8 |
-
description = "Web IDE for
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.10"
|
| 11 |
dependencies = [
|
|
@@ -15,7 +15,7 @@ dependencies = [
|
|
| 15 |
keywords = ["reachy-mini-app"]
|
| 16 |
|
| 17 |
[project.entry-points."reachy_mini_apps"]
|
| 18 |
-
|
| 19 |
|
| 20 |
[tool.setuptools]
|
| 21 |
package-dir = { "" = "." }
|
|
@@ -25,4 +25,4 @@ include-package-data = true
|
|
| 25 |
where = ["."]
|
| 26 |
|
| 27 |
[tool.setuptools.package-data]
|
| 28 |
-
|
|
|
|
| 3 |
build-backend = "setuptools.build_meta"
|
| 4 |
|
| 5 |
[project]
|
| 6 |
+
name = "coding_lab"
|
| 7 |
version = "0.1.0"
|
| 8 |
+
description = "A tiny Web IDE for coding moves of the Reachy Mini robot"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.10"
|
| 11 |
dependencies = [
|
|
|
|
| 15 |
keywords = ["reachy-mini-app"]
|
| 16 |
|
| 17 |
[project.entry-points."reachy_mini_apps"]
|
| 18 |
+
coding_lab = "coding_lab.main:RmscriptApp"
|
| 19 |
|
| 20 |
[tool.setuptools]
|
| 21 |
package-dir = { "" = "." }
|
|
|
|
| 25 |
where = ["."]
|
| 26 |
|
| 27 |
[tool.setuptools.package-data]
|
| 28 |
+
coding_lab = ["**/*"]
|