The underlying annotator library has been inactive for some years. See Apache Annotator for a contemporary, open equivalent.
Forked from django-annotations . Django implementation of annotatorjs Storage.
Implements most of the methods as per the Core Storage API documentation (root
, index
, create
, read
, update
, delete
and search
).
To see a working demo:
virtualenv annotatorjs
cd annotatorjs
source bin/activate
git clone https://github.com/PsypherPunk/django-annotations.git
cd django-annotations
pip install -r requirements/base.txt
./manage.py migrate
./manage.py runserver
A demo. page will then be available at /demo
.
Simply accepts a HTTP POST
to /enqueue
, passing the request body onto an RQ worker. The worked should be started via:
./manage.py rqworker default
The worker itself is configured via the RQ_QUEUES
settings in annotator.settings.base
.