Skip to content

Commit

Permalink
New frontend web client (#557)
Browse files Browse the repository at this point in the history
Fixes #261

---------

Co-authored-by: Julien Cretin <cretin@google.com>
  • Loading branch information
chris-dietz and ia0 authored Aug 2, 2024
1 parent a86f91e commit 79f0d3f
Show file tree
Hide file tree
Showing 34 changed files with 2,095 additions and 674 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* @ia0
/crates/runner-host/crates/web-client/ @chris-dietz @ia0
140 changes: 140 additions & 0 deletions crates/runner-host/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion crates/runner-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ usb-device = { version = "0.3.2", optional = true }
usbd-serial = { version = "0.2.2", optional = true }
usbip-device = { version = "0.2.0", optional = true }
wasefire-board-api = { path = "../board", features = ["std"] }
wasefire-cli-tools = { path = "../cli-tools", optional = true }
wasefire-error = { path = "../error" }
wasefire-interpreter = { path = "../interpreter", optional = true }
wasefire-logger = { path = "../logger" }
Expand Down Expand Up @@ -55,7 +56,7 @@ usb = [
"wasefire-scheduler/board-api-platform-protocol",
"wasefire-scheduler/board-api-usb-serial",
]
web = ["dep:web-server"]
web = ["dep:wasefire-cli-tools", "dep:web-server"]
# Exactly one is enabled by xtask.
debug = ["wasefire-logger/log", "wasefire-protocol-usb?/log", "wasefire-scheduler/log"]
release = []
Expand Down
1 change: 1 addition & 0 deletions crates/runner-host/crates/web-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/dist/
Loading

0 comments on commit 79f0d3f

Please sign in to comment.