Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 572 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 572 Bytes

Little Shop | Final Project | Backend Starter Repo

The FE repo for Little Shop lives here.

Setup

bundle install
rails db:{drop,create,migrate,seed}
rails db:schema:dump

This repo uses a pgdump file to seed the database. Your db:seed command will produce lots of output, and that's normal. If all your tests fail after running db:seed, you probably forgot to run rails db:schema:dump.

Run your server with rails s and you should be able to access endpoints via localhost:3000.