Skip to content

Recipes website created using Bootstrap 5 with Ruby on Rails 6

Notifications You must be signed in to change notification settings

mateusflorez/recipes-on-rails

Repository files navigation

Recipes on Rails

Status: Complete ✔️

Ruby version 2.7.0
Rails version 6.1.6.1
Database SQLite3 (dev) / PostgreSQL (prod)

Functionalities:

  • Recipes CRUD
  • Add comments

Instalation instructions:

#Clone the repository.
git clone https://github.com/mateusflorez/recipes-on-rails.git

#Open the terminal on the project root file.
cd recipes-on-rails

#Install Ruby on Rails dependencies
bundle install

#Install Node dependencies
yarn install

#Create the development and test databases
rails db:create

#Create the tables
rails db:migrate

#Run the project
rails s

Open the browser at the address localhost:3000.