A Blogging platform built using Ruby on Rails with the help of Paiza Cloud IDE.
šHit that ā button to show some ā¤ļø
rails new blog
āblogā will be the name of our application.
The dependencies will take some minutes to install.
gem 'sqlite3'
with
gem 'sqlite3', '1.3.13'
After making changes in the gemfile , enter the following commands in the terminal to update and install the specified version of dependencies :
cd blog
bundle install
bundle update
The server can be activated by any one of the following commands :
rails server -b $IP -p $PORT
or
rails server
or
rails s
rails generate scaffold Post title:string body:text
Rails will create a bunch of folders with functionalities in the app directory.
rake db:migrate
rails s -b $IP -p $PORT
The database thus gets modified so that we can store blog posts.
This project is licensed under the MIT License - see the LICENSE.md file for details