GeoRSS aggregator and Layar augmented reality server
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
Adrian Short 9c615c3eb1 Rename method that fetches all feeds 11年前
app Fix #15 - when deleting a feed from a layer, just delete the relationship 11年前
config Remove feed destroy route #15 11年前
db Add remember me autologin feature 11年前
doc First commit 12年前
lib Rename method that fetches all feeds 11年前
log First commit 12年前
public Improved add feed usability on the home page 12年前
script First commit 12年前
test Add Layer model/scaffold with a join table to habtm feeds 11年前
vendor First commit 12年前
.gitignore Ignored .rvmrc 12年前
Gemfile Migrate to Heroku Cedar stack 11年前
Gemfile.lock Migrate to Heroku Cedar stack 11年前
Procfile Fix omitted vars 11年前
README.md Improved README 11年前
Rakefile First commit 12年前
config.ru First commit 12年前

README.md

Apollo

A GeoRSS aggregator and augmented reality server for Layar

© 2012 Adrian Short and Charlotte Gilhooly at Headline Data

This software was commissioned by Talk About Local as part of the HypARlocal project.

HypARlocal is funded by NESTA and the Nominet Trust.

What it does

  • Periodically pulls from a list of subscribed GeoRSS feeds into a local database
  • Serves requests from Layar in JSON format for posts (points of interest) within a radius of a specified point.

Requirements

  • Rails 3
  • MongoDB
  • MongoMapper
  • Feedzilla

Installation

Before installing/deploying:

$ export APOLLO_HOSTNAME=example.org

On Heroku:

$ heroku config:add APOLLO_HOSTNAME=example.org

Replace example.org with your own hostname. When running locally this will probably be localhost:3000.

Set up a cron job or other scheduler to run

$ rake get_all_feeds

once per hour or to taste.

Now create yourself a user account from the console:

$ rails c
> User.create :email => "me@example.org", :password => "verysecret", :password_confirmation => "verysecret"