Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 767 Bytes

SETUP.md

File metadata and controls

14 lines (11 loc) · 767 Bytes

Development Setup

This project uses npm for package management and Grunt for task running. The project has ReactJS written in JSX, which Grunt turns into JavaScript with Babel. Here's how to get up and running:

# Assumes you've got npm installed:
git clone https://github.com/sunlightlabs/databuoy.git
cd databuoy
sudo npm install -g grunt-cli
npm install
grunt

Open up http://localhost:8000/index.html, and you should see a freshly-built version of the site! When you edit files in src, Grunt will make sure that your changes are reflected in the dist directory, which is where index.html gets its JavaScript and CSS.