$ git clone https://github.com/mclellac/ramify
$ cd ramify
$ make deps && make proto && make
$ make install
mysql> CREATE DATABASE posts;
Copy the example configuration file from ./services/post, and modify what you need to.
$ ./ramify-auth&
$ ./ramify-post&
$ ./ramify-api -auth $AUTH_HOST:3000 -post $POST_HOST:3001
The default ports for the auth and post service are 3000 and 3001. You can change them by passing the port number you wish for the service to run on as an argument when starting the service.
Example:
$ ./ramify-auth 5000&
To start the auth service on port 5000.
$ ramify add "I'm a test post title" "I'm the body of the post."