Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.63 KB

README.md

File metadata and controls

31 lines (20 loc) · 1.63 KB

README

Build Status Bluejay Dashboard Pivotal Tracker

Main staging server

https://berkeley-food-collective.herokuapp.com/

Repository Setup

  • Fork the repository and clone it locally
  • Make sure you have Ruby version 3.0.3 installed and run rvm use 3.0.3 to switch to it
  • Run bundle install --without production to install necessary gems
  • Setup and seed the database by running rails db:migrate and rails db:seed

Run tests locally

  • To run RSpec tests, run bundle exec rspec
  • To run Cucumber tests, run bundle exec cucumber

Deploy to Heroku

  • run heroku create -a app-name to create empty application Heroku
  • run git add . and git commit -m "[message]" to prepare local changes
  • run git push heroku main to push the code to Heroku