# gorse-dashboard **Repository Path**: asione/gorse-dashboard ## Basic Information - **Project Name**: gorse-dashboard - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-26 - **Last Updated**: 2021-07-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Dashboard for gorse recommender system [![build](https://github.com/gorse-io/dashboard/actions/workflows/build.yml/badge.svg?branch=master)](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). ![](https://raw.githubusercontent.com/gorse-io/dashboard/master/assets/preview.png) ## Quick Start - Install dependencies by running `yarn`. - Run `yarn serve` to start the local development server. ## 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) ```