old blog,

Radiate: A simple push server for SocketIO (alpha)

Izhar Firdaus Izhar Firdaus Follow Support Oct 03, 2011 · 1 min read
Radiate: A simple push server for SocketIO (alpha)
Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.
Based on my previous post on WebSocket server using Tornado, I've hacked the code more to be a SocketIO server instead of just WebSocket, so that it can be used on many browsers until everyone support WebSocket. The SocketIO connection is handled by TornadIO, a neat SocketIO library for Tornado.

I've uploaded the code here in github: https://github.com/kagesenshi/radiate

I've packaged Radiate together with a buildout.cfg, so you can deploy it easily by just using these few lines of commands
git clone https://kagesenshi@github.com/kagesenshi/radiate.git radiate
cd radiate
python bootstrap.py
./bin/buildout
To start the daemon, just execute:
./bin/radiate-admin fg
The readme file on how to deploy and use Radiate is here: https://github.com/kagesenshi/radiate/blob/master/README.txt.
Written by Izhar Firdaus Follow Support
I'm a system architect, data engineer and developer advocate with passion in Free / Open Source software, entrepreneurship, community building, education and martial art. I take enjoyment in bridging and bringing together different FOSS technologies to help businesses and organizations utilize IT infrastructure to aid and optimize their business and organizational process.

Simple websocket push service using Tornado

WebSocket server side documentation/guides around tend to be very node.js oriented. However, I don't fancy rewriting stuff I already ...

In old blog, Oct 02, 2011

« Previous Post

Email server with Postfix, Dovecot, and LDAP

I think I'll skip the introduction as this is mainly a note for myselfThe LDAP SetupI'm not going to cover how to setup LDAP. The set...

In old blog, Oct 03, 2011

Next Post »