Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rryter/node-status
Basic status page for Vanguard and Pandora
https://github.com/rryter/node-status
Last synced: 20 days ago
JSON representation
Basic status page for Vanguard and Pandora
- Host: GitHub
- URL: https://github.com/rryter/node-status
- Owner: rryter
- Created: 2021-10-31T10:14:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-08T02:20:09.000Z (about 2 years ago)
- Last Synced: 2024-06-20T03:02:41.003Z (7 months ago)
- Language: TypeScript
- Homepage:
- Size: 11.1 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node-GUI
Very basic Node GUI. Runs on port `8111`.
## Install dependencies & setup
Prepared directories and settings.db file:```bash
mkdir ~/.lukso && touch ~/.lukso/settings.db
```
install npm packages using yarn:```bash
yarn install
```build lukso-status angular to be part of GO app
```bash
yarn build lukso-status
```Install gow - the [Go Watcher](https://github.com/mitranim/gow):
```bash
go install github.com/mitranim/gow@latest
```
Don't forget to export paths for Go in order to have gow work:```bash
export GOPATH=~/go
export PATH=$PATH:$GOPATH/bin
```## How to run
To start the web application inside the root of the project run:
```bash
yarn start
```
Open [http://localhost:4200](http://localhost:4200)For running the Go proxy service between webapp and the node run the following:
```bash
cd apps/lukso-manager && gow run .
```## Unit and E2E
Coming soon.
## How to install
Coming soon.