Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 920 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 920 Bytes

Private events

This repository is intended to be an associations practice using Rails, the instructions for this practice project can be found in TOP site.

In summary, this is the backend of an event's site that has users and events related in many ways.

Setup

Copy and paste the following chain of commands in your terminal as a regular user. This should work in Linux and Mac operative systems.

git clone --single-branch --branch 'feature/private-events' \
https://github.com/santiago-rodrig/private-events && \
cd private-events && bundle install && yarn install --check-files && \
rails db:reset && rails db:reset RAILS_ENV=test && rails db:migrate && \
rails db:migrate RAILS_ENV=test

Test suite

To run the tests that verify the proper behavior of the Rails app, run the following command.

rspec