I finally found it after looking at the fast track tutorial again.
Mistake #1 -> erlang noob
Conn = riakc_pb_socket:start("127.0.0.1", 8091)
is wrong, it should be
{ok, Conn} = ...
And after that I had the port wrong, (8081-3 for the fast track dev db's).
Thanks!
On Thu, Sep 15, 201
I have a 0.14.2 dev database set up from the riak fast track tutorial.
I created an Erlang application that creates a new route for webmachine upon
startup.
configure_webmachine() ->
webmachine_router:add_route(
{["foo", bar, '*'], myapp_myresource, []}).
I modified vm.args for all thr