Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperstudio/Annotation-Studio
An online annotation platform for teaching and learning in the humanities.
https://github.com/hyperstudio/Annotation-Studio
Last synced: 5 days ago
JSON representation
An online annotation platform for teaching and learning in the humanities.
- Host: GitHub
- URL: https://github.com/hyperstudio/Annotation-Studio
- Owner: hyperstudio
- License: gpl-2.0
- Created: 2012-03-27T14:34:52.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T21:47:29.000Z (8 months ago)
- Last Synced: 2024-08-01T12:29:05.218Z (3 months ago)
- Language: HTML
- Homepage: http://www.annotationstudio.org
- Size: 26.2 MB
- Stars: 104
- Watchers: 21
- Forks: 31
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - hyperstudio/Annotation-Studio - An online annotation platform for teaching and learning in the humanities. (others)
README
# Annotation Studio
An annotation platform designed for teaching and learning in the humanities,
and with aspirations to more general use.## Works with: MIT Annotation Data Store
There are two servers required to run this application. This one, and the [MIT
Annotation Data Store](https://github.com/hyperstudio/MIT-Annotation-Data-Store
).You __MUST__ get the Annotation server running to be able to create or view
annotations.# Getting Started
## Things to install
Annotation Studio uses PostgreSQL and RubyThe MIT Annotation Data Store requires Node.js, NPM and MongoDB
## General Installation
Use rbenv or rvm to install and run the Ruby version specified in `.ruby-version`.(optional additional software: [thoughtbot's Laptop repo](https://github.com/thoughtbot/laptop))
```
git clone https://github.com/hyperstudio/Annotation-Studio.git
cd Annotation-Studio
./bin/setup
```which will:
* Drop existing databases
* Run migrations and prepare the test database
* Seed the application
* Install the MIT Annotation Data Store under `./tmp/annotation_data_store`
* Create an example application.ymlAfter setting up the app, run:
```bash
bundle exec foreman start -f Procfile.dev
```to spin up development dependencies. You can exist the development daemons by
hitting ctrl-c, per normal unix semantics.### Installation on Heroku
If you would like to run the application on Heroku (recommended), do the
following- Create a Heroku app `heroku apps:create $APPNAME`
- Add the Heroku PostgreSQL add-on `heroku addons:add heroku-postgresql`
- Don't worry about providing db configuration, [Heroku will do it for you]
(https://devcenter.heroku.com/articles/heroku-postgresql#connecting-in-rails)
- Use Figaro to load your `application.yml` into environment variables and
communicate them to Heroku
- `rake figaro:heroku[$APPNAME]`### Multitenancy
This app uses the [apartment gem](http://github.com/influitive/apartment) to allow multiple domains to be hosted in a single instance.To create a new tenant:
1. Log in via an AdminUser account to http://www.your-app-url.com/admin/
1. Add a Tenant record, with the full hostname at which you want users to access the application, and the name of the database to be used to store the tenant's data
1. Configure DNS for that domain (or subdomain), pointing it to the URL of the application
1. Add the domain in question to the web server configuration for the application#### Caveats
1. If a domain does not have a matching Tenant, the default "public" tenant will be used.
2. Admin users are shared across all tenants, and therefore shouldn't be created and granted to single-tenant users## User Support and Developer forum
http://support.annotationstudio.org## Thanks
Thanks to:
- [NEH Office of Digital Humanities](http://www.neh.gov/odh) who has funded
this project
- [OKFN](http://okfn.org/) for supporting [The Annotator]
(http://annotatorjs.org)
- [Nick Stenning](https://github.com/nickstenning/) for being awesome and for
leading the Annotator developer team
- [Dan Whaley, Randall Leeds and hypothes.is](https://hypothes.is/) for being
awesome and supporting the Annotator Community
- [The Annotator community](https://github.com/openannotation/annotator/) for
plugins and being awesome.## Contributors
### Institutions
- Active Archives Initiative at MIT
- http://aai.mit.edu
- MIT HyperStudio
- http://hyperstudio.mit.edu/### Developers
- Jamie Folsom [@jamiefolsom](http://github.com/jamiefolsom)
- Liam Andrew [@mailbackwards](http://github.com/mailbackwards)
- Andrew Magliozzi [@andrewmagliozzi](http://github.com/andrewmagliozzi)
- Daniel Collis-Puro [@djcp](http://github.com/djcp)
- Seth Woodworth [@sethwoodworth](http://github.com/sethwoodworth)
- Ayse Gursoy [@gursoy](http://github.com/gursoy)
- Jacob Hilker [@jhilker](http://github.com/jhilker)
- Ben Silverman [@blms](http://github.com/blms)
- Peggy Wang [@pegolegoeggo](http://github.com/pegolegoeggo)
- Lizao Wang [@LizaoWang](http://github.com/LizaoWang)
- Joshua Mbogo [@mbogo-mit](http://github.com/mbogo-mit)## License
GPL2: http://www.gnu.org/licenses/gpl-2.0.html