https://berkeley-food-collective.herokuapp.com/
- 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
andrails db:seed
- To run RSpec tests, run
bundle exec rspec
- To run Cucumber tests, run
bundle exec cucumber
- run
heroku create -a app-name
to create empty application Heroku - run
git add .
andgit commit -m "[message]"
to prepare local changes - run
git push heroku main
to push the code to Heroku