Better annotations for video.
- Product Owner: Brant Choate
- Scrum Master: Johnny Nguyen
- Development Team Members: Zack Fischmann, Charlie Hwang, Johnny Nguyen, Brant Choate
Some usage instructions
- Node 0.12.x
- Postgresql 9.4.x
From within the root directory:
sudo npm install -g bower
npm install
bower install
To run the app, Postgres must be installed with proper role set up. Follow the directions below to set up the DB.
- Install brew (http://brew.sh/)
- Then type command
brew update
. - Then type command
brew install postgres
.
- Install Postgres.app http://postgresapp.com/
- Open Postgres.app.
- Type command
psql
. - Will be in Postgres shell. Prompt should be
=#
(instead of $). - Then type command
CREATE ROLE root WITH LOGIN;
- Then type command
ALTER ROLE root WITH SUPERUSER;
- Then type command
ALTER ROLE root WITH CREATEROLE;
- Then type command
ALTER ROLE root WITH CREATEDB;
- Then type command
ALTER ROLE root WITH REPLICATION;
View the project roadmap here.
See CONTRIBUTING.md for contribution guidelines.