Microblog API is a sample project to manage all the main resources of a blog. Such as users(and their authentication), posts, followers, followees, etc...
You can check a list of features and resources on the API documentation here.
- Ruby 2.3.4
- Rails 5.0.1
$ cd microblog_api
$ bundle install
First, create your database.yml from scratch or use our sample:
$ cp config/database.yml.sample config/database.yml
Before run your app, you must to create and apply the app's migrations:
$ cd microblog_api
$ bundle install
Now, you can start the server:
$ rails s