Prototype Website: annotatar.xyz
Created by: Rachel Boyce (RB) arebe.us
Lo-fi augmented reality for the mobile web, designed to:
- generate locative media from interactions on Twitter
- work on smart devices without installing a native app
More information is available on the project blog.
-
Fork this repo
-
Create a new meteor project called "annotatar" with
meteor create annotatarand remove the default html, css, and js files from the root - you just need the meteor package files -
cdinto that directory and initialize an new git repo -
Set the remote to your fork of annotatar with
git remote add origin <your url> -
Pull the repo from the remote (this may take a few moments)
-
Open the
packagesfile in the.meteordirectory and add the following:
mrt:twit
lfergon:exportcsv
ejson
iron:router
twbs:bootstrap
houston:admin
dburles:google-maps
- Create a
settings.jsonin the project root directory, to store your API keys, with the format:
{
"twitter": {
"consumer_key": "xxxxx",
"consumer_secret": "xxxxx",
"access_token": "xxxxx",
"access_token_secret": "xxxxx"
},
"public": {
"houston_root_route": "/houston",
"houston_documents_per_page": "30"
}
}
-
Run the meteor app with
meteor --settings settings.json -
Deploy to your own server using Meteor Up, instructions for which can be found on the project blog
Original code in this repo is licensed under GPLv3. Its dependencies include Meteor.js and jQuery (MIT license).
annotatAR was originally developed as a capstone project as a requirement for ALM in Digital Media Design at Harvard University School for Extension Studies.