Gofr is a Feed Reader (Google Reader clone) for [Google App Engine] 1. It grew out of my frustration with the relational backend of [grr] 2 and my inability to optimize it beyond unsatisfactory results.
Gofr is written in [Go] 3, and uses the [Google Cloud Datastore] 4. It's one of the [Google Cloud Developer Challenge] 6 finalists, currently hosted at [gcdc2013-gofr.appspot.com] 7.
- Folders
- Tagging
- Article and subscription filtering
- Keyboard navigation support with extensive support for Google Reader's keyboard shortcuts (press ? to view available shortcuts)
- OPML import/export
- Article sharing to Google+, Facebook and Twitter
- Mobile browser support
- High-density screen support
To run locally on development server:
- Clone the repository:
git clone https://github.com/melllvar/Gofr.git
- Install the go-charset library:
go get code.google.com/p/go-charset/charset
- Run the development server:
goapp serve Gofr/
To deploy:
- Clone the repository:
git clone https://github.com/melllvar/Gofr.git
- Change into the new directory:
cd Gofr
- Edit app.yaml and change the name of the application (initially "gofr-io") to one of your choosing
- Deploy to production:
goapp deploy
When running in production, Gofr routinely (every 10 minutes, configurable in cron.yaml) runs a cron job to update feeds. Since the development server does not support cron jobs, the feeds will need to be updated manually by logging in to the application as an Administrator, and opening the cron job URL in a web browser: http://localhost:8080/cron/updateFeeds
.