Set-Up
Need node, NPM, and bower installed.
- Clone the repo and cd into the directory
- npm install
- bower install
- python -m SimpleHTTPServer 8000 (or your favorite local server)
- open the files in your browser at localhost:8000
To run the db node scripts, you need a config file that points at your db.
Place a file at: config/config.js
That looks like this...
module.exports = { host: 'hostname', user: 'username', pswd: 'password', dbnm: 'database' };