Circular is built as a Backbone.js application that communicates with a MongoDB datastore through a REST API written in PHP.
The server part, based on the Silex PHP micro-framework, is intended to be the dumbest possible, i.e. we tried to put most "intelligence" in the Backbone app, not in the API. (For example, the API only takes UNIX timestamps and posts' content, while the Backbone app computes the scheduled timestamps).
A daemon based on PHP-Daemon then runs in the background and is responsible for sending your posts to Twitter when they're due.
Prerequisites:
- MongoDB, and PHP's MongoDB driver
- To run the background daemon based on PHP-Daemon, you need the POSIX and PCNTL extensions for PHP.
- Composer
Installation:
- Make sure you cloned this repo recursively, i.e. with submodules that are in
extlib
- Create a new Twitter application on dev.twitter.com, then copy your credentials into
api/config.php.sample
and rename it toapi/config.php
- Install the Silex application dependencies using Composer:
cd api && composer install
- Create an
uploads
directory and make it writable by the Web server - Your application's frontend should now be accessible where you set it up, for instance at
http://localhost/Circular
. The MongoDB datastore's name will becircular
(you don't have to explicitly create it). - Start the daemon with
php Daemon/run.php
- Use option
-d
to run as daemon, i.e. detach and run in the background - Your daemon's log will be in
/var/log/daemons/circular
, or if this is not writable, inDaemon/logs
. You can use/rotate this log to monitor your daemon.
- Use option
- That's it!
- Copyright 2012 Julien Chaumond
- Distributed under the MIT License