Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chmanie/doctape-gallery
create an image gallery from your doctape tags
https://github.com/chmanie/doctape-gallery
Last synced: 28 days ago
JSON representation
create an image gallery from your doctape tags
- Host: GitHub
- URL: https://github.com/chmanie/doctape-gallery
- Owner: chmanie
- Created: 2013-01-23T23:05:54.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2020-09-03T12:00:29.000Z (about 4 years ago)
- Last Synced: 2024-10-07T21:03:37.743Z (about 1 month ago)
- Size: 137 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
doctape-gallery
===============simple image gallery from your doctape tags. hacked at doctape hackathon #1 (01/18 - 01/19 2013, Hannover).
needs node.js and couchdb.to install just clone the repo and
npm install
the dependencies.
in app.js / app.coffee change
DOCTAPE_APP_KEY = 'your-doctape-app-key';
DOCTAPE_APP_SECRET = 'your-doctape-app-secret';
CALLBACK_URL = 'http://app.url/auth/doctape/callback';
DB_URL = 'http://couch:5984';
DB_DATABASE = 'database';
DB_DESIGN = 'designdoc';to your corresponding values. your couchdb _design document should contain the following simple view:
{
"galleries_by_username": {
"map": "function(doc) { emit(doc._id, doc.galleries) }"
}
}then visit your app.url and log in with your doctape credentials.
i think that should do it. happy gallerying :)