sevenwire / flak

A private, API-based chat server.

This URL has Read+Write access

nate (author)
Mon Nov 02 20:49:11 -0800 2009
commit  189846dc6dfc3b56a8d2251ca179be1b3b45ebdb
tree    abe6c48d856ac3e8ca6c6f30c8c873ba40c80490
parent  371dea3e028addca1b040c6c0d83214aefd5f181 parent  6712cc8adf4fb1d0f4bd2a00c491ed8c5658a56d
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