- Install dependencies
bundle install
- Install Postgres, and create the database & user for login:
psql
CREATE CREATE USER syntaxerror WITH SUPERUSER PASSWORD 'Password1';
CREATE DATABASE syntaxerror_development;
- Create users, roles and tables and seed data
rake db:migrate RAILS_ENV=development
rake db:seed
- Start the server
rails s
- Go to localhost:3000
- [Administrator] username: wendylee password: Password123
- See db/seeds.rb for other possible login users