sevenwire / flak

A private, API-based chat server.

This URL has Read+Write access

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