This is a blog built with Ruby on Rails. It has CRUD functionality with an SQL Lite Database.
Ruby on Rails 5, SQL Lite installed and an IDE like VS code, Sublime Text or VS Code.
1. Clone the Repo
- CD into the folder and install the gems by typing in the terminal:
bundle install
- Create a Database by typing in the terminal:
rails db:migrate
- Seed the Database with categories by typing in the terminal:
rails db:seed
- Run rails server by typing in the terminal:
rails s
- Open your favorite Web Browser and type:
http://localhost:3000
-
Register as a new user and start uploading blog posts.
-
Have fun.