Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 880 Bytes

README.md

File metadata and controls

40 lines (28 loc) · 880 Bytes

Microblog Client

The Microblog Client is an app which gives an interface that consumes for the Microblog API. Feel free to modify it on your way.

Dependencies

  • Ruby 2.3.4
  • Rails 5.0.1
  • Node.js

Instalation

$ cd microblog_client
$ bundle install && npm install

Running

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

To run the server, you'll need to use the gem foreman. Install it and then you can run the server with the default Procfile.dev configuration:

Now, you can start the server:

$ foreman start -f Procfile.dev 

That's it! ;)