https://github.com/gorse-io/dashboard
Web dashboard for gorse recommender system engine
https://github.com/gorse-io/dashboard
dashboard recommender-system vue
Last synced: 2 months ago
JSON representation
Web dashboard for gorse recommender system engine
- Host: GitHub
- URL: https://github.com/gorse-io/dashboard
- Owner: gorse-io
- License: mit
- Created: 2021-04-21T14:36:17.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-14T13:42:13.000Z (5 months ago)
- Last Synced: 2025-05-07T20:36:35.974Z (2 months ago)
- Topics: dashboard, recommender-system, vue
- Language: Vue
- Homepage:
- Size: 36.2 MB
- Stars: 13
- Watchers: 2
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Dashboard for gorse recommender system
[](https://github.com/gorse-io/dashboard/actions/workflows/build.yml)
An admin dashboard for gorse recommender system derived from [shards-dashboard-vue](https://github.com/DesignRevision/shards-dashboard-vue).

## Quick Start
1. Install Node 12 and `yarn`.
2. Install dependencies by running `yarn`.
3. Run `yarn serve` to start the local development server.> - The build might fail if you are using newer versions of Node.
> - [Node Version Manager](http://nvm.sh/) is recommended for managing multiple Node versions on a single machine.## Usage
Install the package.
```bash
go get -u github.com/gorse-io/dashboard@statik
```Import and serve.
```go
import (
"github.com/rakyll/statik/fs"
_ "github.com/gorse-io/dashboard"
)// ...
statikFS, err := fs.New()
if err != nil {
log.Fatal(err)
}
// Serve the contents over HTTP.
http.Handle("/", http.FileServer(statikFS))
http.ListenAndServe(":8080", nil)
```