Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.11 KB

README.md

File metadata and controls

48 lines (41 loc) · 1.11 KB

Gohan Web UI

Web UI project for Gohan project (https://github.com/cloudwan/gohan)

Join the chat at https://gitter.im/cloudwan/gohan

Getting started

See getting started in Gohan

https://github.com/cloudwan/gohan

Setup development environment

  • Run gohan server
  • Install npm dependencies
    $ npm install
  • Copy configurations files
    $ cp app/config.json.sample app/config.json
  • Build application for development
    $ npm run build-dev
  • Start dev server with auto refresh and options. Learn more about options, read the official document.
    $ npm run dev-server
    $ npm run dev-server -- --host 0.0.0.0 --https
  • Server starts on
    http://localhost:8080/
  • Start tests
    $ npm run test
  • Build application for production
    $ npm run build