sevenwire / flak

A private, API-based chat server.

This URL has Read+Write access

nate (author)
Mon Nov 02 17:34:51 -0800 2009
commit  bf91cdf520a98a16551ba487eb0263b75bbca8a3
tree    095d3bd8607c40406cc94b897227597ea8d74f1f
parent  cf52ef2f9ee8fc771c3ba639c53418c18a012756
flak /
name age message
file .gitignore Mon Nov 02 17:07:11 -0800 2009 Adding better setup and setup instructions [nate]
file LICENSE Tue Oct 27 20:36:57 -0700 2009 Adding the license and updating docs. [brandonarbini]
file README.markdown Loading commit data...
file Rakefile Mon Oct 26 16:18:40 -0700 2009 Initial configuration of rails [nate]
directory app/
directory config/
directory db/
directory lib/ Mon Nov 02 17:07:11 -0800 2009 Adding better setup and setup instructions [nate]
directory public/
directory script/ Mon Oct 26 16:18:40 -0700 2009 Initial configuration of rails [nate]
directory test/
directory vendor/
README.markdown

Flak

A private, API-based chat server.

Setup

git clone git://github.com/sevenwire/flak.git
# or download and extract from from http://github.com/sevenwire/flak/archives/master
cd flak # or wherever the application was cloned or extracted to, the root of the project
rake flak:setup
# Change config/config.yml and config/database.yml to taste
rake db:create:all
rake db:migrate
script/server

Use

  • Go to http://localhost:3000 in a browser for an API reference
  • Test with lib/flak_wrapper.rb, which mostly works (requires httparty, which you can install using: gem install httparty)
  • Try it out with curl
  • Write your own interface