/syntaxerror

E-commerce website created using Ruby on Rails deployed through Heroku

Primary LanguageJavaScript

SyntaxError

homepage demo administration demo

Setup

  1. Install dependencies
bundle install
  1. Install Postgres, and create the database & user for login:
psql
CREATE CREATE USER syntaxerror WITH SUPERUSER PASSWORD 'Password1';
CREATE DATABASE syntaxerror_development;
  1. Create users, roles and tables and seed data
rake db:migrate RAILS_ENV=development
rake db:seed
  1. Start the server
rails s
  1. Go to localhost:3000

Login with the following users

  • [Administrator] username: wendylee password: Password123
  • See db/seeds.rb for other possible login users