2023-08-23 17:10:30 +00:00
|
|
|
# nimbus-gui
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
A GUI for managing your [Nimbus](https://nimbus.team/) nodes.
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
## Deployed pages showing the project
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
We have a Storybook up at https://nimbus-gui.github.io/nimbus-gui/ which shows
|
|
|
|
the components of the project. We also have a deployed version of the GUI up at
|
|
|
|
https://nimbus-gui.vercel.app/ which shows the GUI as it currently looks in the
|
|
|
|
`main` branch of the
|
|
|
|
[`nimbus-gui/nimbus-gui`](https://github.com/nimbus-gui/nimbus-gui) repository.
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
## Development and running the project yourself
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
### Dependencies
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
Run `yarn` in the root directory of the project in order to install dependencies.
|
2023-08-03 06:20:54 +00:00
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
### Running a development server
|
|
|
|
|
|
|
|
If you want to run a development server to see what the GUI looks like you can
|
|
|
|
run the following command:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn dev
|
2023-08-03 06:20:54 +00:00
|
|
|
```
|
|
|
|
|
2023-09-26 09:16:58 +00:00
|
|
|
This will start the server on port 5173 and you can open https://localhost:5173
|
|
|
|
in order to see the page.
|
|
|
|
|
|
|
|
### Running storybook locally
|
|
|
|
|
|
|
|
If you want to run the Storybook locally you can simply run `yarn storybook` in
|
|
|
|
the root of the project. This is useful if you want to contribute a component
|
|
|
|
and be sure that it renders as you expect it to, without testing it out on any
|
|
|
|
given page.
|