rstat.us is a microblogging site built on top of the ostatus protocol.
If you'd like to contribute, here are some details:
- The stack: ruby/sinatra/mongodb
- The code
- The documentation (need lots of improvement here!)
- The Issues list
- Please fork the project and make a pull request
First off: you will need MongoDB (www.mongodb.org). They have a quickstart guide for getting it installed and running.
Then do:
$ git clone https://github.com/$MY_GITHUB_USERNAME/rstat.us.git
$ cd rstat.us
Copy the config file; if you have actual Twitter API keys, you can add yours, but this file just needs to exist for the server to work.
$ cp config.yml.sample config.yml
Then update your gemset:
$ gem install bundler && bundle install
And start the server:
$ rackup
Bam! Visit http://localhost:9292/ in your browser, and you'll be good.
For performance reasons, we're currently compressing our stylesheets and javascripts, as well as embedding what images we can. To compile Coffeescript (.coffee) or Sassy CSS (.scss) files for the site to use, use the following rake task:
$ rake assets:compile
Note: On Ubuntu, I needed to have nodejs installed on my system for this to work. If you get "undefined method 'compile' for nil:NilClass", that might be your problem, too. "sudo apt-get install nodejs" for Ubuntu; for other systems, http://nodejs.org probably has all the answers.
If you need help with this, then you're not ready to run one. Eventually, we plan on making this super easy, but until we feel that it's ready, we're keeping the instructions 'secret.' Sorry!