{% extends "otree/admin/Session.html" %} {% load otree_tags floppyforms %} {% block internal_scripts %} {{ block.super }} {% endblock %} {% block content %} {{ block.super }} {% if not mturk_ready %}
MTurk is currently disabled. If you want to publish your HIT on MTurk please do the following steps:
Step | Done? |
---|---|
Run pip3 install otree-core[mturk]
and in your requirements_base.txt ,
replace otree-core==N.N.N with otree-core[mturk]==N.N.N .
This will install oTree along with extra MTurk-specific packages.
|
{% if boto3_installed %}Yes{% else %}No{% endif %} |
Set the settings AWS_ACCESS_KEY_ID and
AWS_SECRET_ACCESS_KEY |
{% if aws_keys_exist %}Yes{% else %}No{% endif %} |
Start the server with HTTPS enabled. If using Heroku, you can simply change the URL in your browser's address bar to start with 'https://' and reload this page. | {% if https %}Yes{% else %}No{% endif %} |
You can read more about Amazon Mechanical Turk integration here.
{% else %} {% endif %} {% include "otree/includes/messages.html" %} {% endblock %}