Home > message_box

message_box

Message_box is a project mainly written in Erlang, based on the MIT license.

MessageBox is Twitter clone using Erlang (for plactice).

= MessageBox

MessageBox is Twitter clone using Erlang (for plactice).

==Setup

$ git clone git://github.com/hiroeorz/message_box.git $ cd message_box $ make

==Testing $ make check

==Examples $ mkdir /tmp/test_db $ make boot

rr("src/user.hrl"). rr("src/message.hrl").

%% create user

{ok, User} = message_box:create_user(hoge, "[email protected]", "mypassword").

%% get user_id

UserId = User#user.id.

%% send message

message_box:send_message(UserId, "mypassword", "this is my first message").

%% follow other user

message_box:follow(UserId, "mypassword", OtherUserId).

%% getting home timeline(max message count 40)

message_box:get_home_timeline(UserId, 40).

See documentation[http://github.com/hiroeorz/message_box/blob/master/doc/message_box.md] for more details.

And other modules documenttion here[http://github.com/hiroeorz/message_box/blob/master/doc/README.md].

== Contributing to message_box

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2011 HIROE Shin. See LICENSE.txt for further details.

Previous:4Chan