Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mvrilo/rstat.us
Simple microblogging network based on the ostatus protocol.
https://github.com/mvrilo/rstat.us
Last synced: about 1 month ago
JSON representation
Simple microblogging network based on the ostatus protocol.
- Host: GitHub
- URL: https://github.com/mvrilo/rstat.us
- Owner: mvrilo
- License: wtfpl
- Fork: true (hotsh/rstat.us)
- Created: 2011-03-26T14:29:25.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-03-27T17:27:05.000Z (over 13 years ago)
- Last Synced: 2024-04-09T16:26:23.064Z (7 months ago)
- Language: Ruby
- Homepage: http://rstat.us/
- Size: 1.48 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
rstat.us
========rstat.us is a microblogging site built on top of the [ostatus
protocol](http://status.net/wiki/OStatus).Running your own (on Heroku)
----------------------------You will need a validated heroku account.
Just do this:
$ git clone https://github.com/hotsh/rstat.us.git
$ cd rstat.us
$ heroku create --stack bamboo-mri-1.9.2
$ heroku addons:add mongohq:free
$ heroku addons:add sendgrid:free
$ git push heroku masterBam!
# BUT DON"T YET!!!!1111
This is nowhere near done. Jump on Freenode and ping 'steveklabnik' if
you want to contribute in some way.Running a local copy
--------------------First off: you will need MongoDB (www.mongodb.org). They have a [quickstart guide](http://www.mongodb.org/display/DOCS/Quickstart) for getting it installed and running.
Then do the same as above:
$ git clone https://github.com/hotsh/rstat.us.git (or your own fork, if applicable)
$ cd rstat.usCopy 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 instead of using heroku, start the server with sinatra:
$ rackup