Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.54 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.54 KB

wasmcloud_host build status

wasmCloud Host - Web UI Dashboard

This is the web UI dashboard that provides for a basic way to interact with a host and its associated lattice. This web application automatically starts the host_core application as a dependency.

Prerequisites

Starting the Host and Web UI Dashboard

To start the wasmCloud host and web ui, cd to this folder (wasmcloud_host), and type or paste these commands:

# start NATS in the background
nats-server -js &

# install dependencies
mix deps.get
make esbuild

# start the host
mix phx.server

Alternatively, you can simply start NATS as shown above and run make run to perform the above steps and run the dashboard.

Now you can visit localhost:4000 from your browser. If you want to use a different HTTP port for the dashboard, set the environment variable PORT, for example,

PORT=8000 mix phx.server

If you later update the source from github, you'll need to re-run the set of commands above.

To learn more about wasmCloud, please view the Documentation.