Skip to content

camsys/oneclick-ui

Repository files navigation

1Click

Although the app doesn't use ruby, build process requires haml rubygem installed.

You may need to install node.js first.

  • sudo gem install haml

  • sudo gem install compass

  • npm install

  • sudo npm install -g grunt

  • sudo npm install -g bower

  • bower install

  • grunt serve (to test if it's working)

Environments

The 1click core is in /app. Customization per install is done by creating a new directory in /environment with a set of configurations.

grunt serve

Use grunt serve to host the UI locally, with livereload for development.

Gruntfile.js accepts these options:

  • environment default QA -- one of the directories in /environment/
  • port default 9000 -- which port to run the server on (for running multiple instances)
  • livereload default 35729 -- which port to run the livereload service on (for running multiple instances)
  • host default PRODUCTION -- which api_host in config.json to download translations from (PRODUCTION, QA, DEV, DEMO)
  • localhost default empty -- api host to use with local servers. defaults to whatever host the browser using but could be any host/port combo like 127.0.0.1:3000

Default for local development of features

$ grunt serve

Example: start UTA configuration locally with translations from QA, at http://0.0.0.0:9914, connected to a locally hosted api at http://127.0.0.1:3000 (livereload port specified to allow more than one instance)

$ grunt serve --environment=UTA --host=QA --port=9914 --livereload=3573 --localhost=127.0.0.1:3000

If you want to use a different localhost (for the api calls), just specify it in grunt

$ grunt serve --environment=UTA --host=QA --localhost=oneclick-uta-qa.camsys-apps.com

Deploy