Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1 KB

File metadata and controls

55 lines (37 loc) · 1 KB

README

About the Project

index page

This project is an integration of api wrappers and a pre-existing blog application, where I called data from apis to use in the application. The apis can either provide fake data to create new articles or comments, or provide a random color to change the background.

Technologies

Project is created with:

  • Ruby 2.7.4
  • Rails 6.1.5

API

Getting Started

  1. Clone repository
git clone https://github.com/patmln/blog_app.git
cd blog_app
  1. Initialize database
rails db:create
rails db:migrate
  1. Add gem in Gemfile and run bundle install
gem 'rest-client'
bundle install
  1. Deploy
rails s