Skip to content
Tracy edited this page Jun 18, 2016 · 3 revisions

Set up

Things you need installed.

  • Postgress
  • Rails
  • npm

install the gems:

bundle install

make sure PostgreSQL is running
install dependencies

npm install

set up and seed the database

rake db:setup

set up webpack to continuously bundle files

npm install webpack -g
webpack —watch

open a new tab and start the server with:

rails server

it should now be running on localhost:3000

Clone this wiki locally