React-based GUI for management and monitoring of Nimbus fleets
Go to file
Hristo Nedelkov 7f436a234f fix row height 2023-11-23 12:20:40 +02:00
.github/workflows ci: add step for checking formatting 2023-09-26 12:23:26 +03:00
.storybook fix: clean preview 2023-09-05 10:31:17 +03:00
.yarn
public Add search icon 2023-11-20 18:39:11 +02:00
src fix row height 2023-11-23 12:20:40 +02:00
.eslintrc.cjs
.gitignore build: add `vercel` 2023-08-23 11:31:17 +03:00
.nojekyll fix(ci): add `.nojekyll` file in root 2023-08-21 15:07:08 +03:00
.nvmrc
.prettierrc feat: add Tamagui integration 2023-08-04 09:43:07 +03:00
.tool-versions
.yarnrc.yml
LICENSE
LICENSE-APACHEv2
LICENSE-MIT
README.md docs: add README explaining how to run project 2023-09-26 12:16:58 +03:00
animations.ts fix: add proper tamagui config 2023-08-10 09:56:22 +03:00
index.html add link preload fonts 2023-09-11 23:20:57 +03:00
package.json add correct faker for ts 2023-11-23 12:20:32 +02:00
tamagui.config.ts cleanup: remove stray commented out line 2023-08-10 10:25:53 +03:00
themes.ts fix: add proper tamagui config 2023-08-10 09:56:22 +03:00
tokens.ts fix: add proper tamagui config 2023-08-10 09:56:22 +03:00
tsconfig.json
tsconfig.node.json
vercel.json ci: add `vercel.json` for vercel to rewrite routes 2023-09-07 15:57:28 +03:00
vite.config.ts debug(ci): set base URL in `.storybook/main` 2023-08-21 20:49:21 +03:00
yarn.lock add correct faker for ts 2023-11-23 12:20:32 +02:00

README.md

nimbus-gui

A GUI for managing your Nimbus nodes.

Deployed pages showing the project

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 repository.

Development and running the project yourself

Dependencies

Run yarn in the root directory of the project in order to install dependencies.

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:

yarn dev

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.