Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 718 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 718 Bytes

The Zetta Browser

This is an easily deployable API browser for the Zetta project. Visualize your APIs, data streams, and interactions with devices.

Building Locally

To build the browser for local development do the following.

  1. git clone https://github.com/zettajs/zetta-browser.git
  2. cd zetta-browser
  3. npm install
  4. npm install -g gulp
  5. gulp

Building Heroku

  1. Create a new app for heroku heroku apps:create z-browser
  2. Set the buildpack to the gulp buildpack heroku buildpacks:set https://github.com/appstack/heroku-buildpack-nodejs-gulp.git
  3. Set the node env variable to production heroku config:set NODE_ENV=production
  4. Push your branch to heroku git push heroku master