Deploy Configuration
The deployment method determines how to ship your experiment to your participants (if at all)
and how to process its data. For development, you will want to use the debug
mode, which
shows the data collected from the current execution of the experiment in the browser at the end
of the experiment.
To actually collect data from participants, magpie uses the magpie server app to store the data in a database (and possibly to manage allocation of participants to different variants of your experiment). You therefore need to have a running instance of the server app, either online or locally, as described in the server app section on installation.
There are two deployment modes to collect data via the magpie server app:
- The
directLink
mode allows participants to work on your experiment simply by following a link. - The
Prolific
mode is used to recruit participants via Prolific.
Both methods require that you have initialized a database on the magpie server app, as described here. You need the experimentId
(a running number) which the server app creates for your experiment, as well as the URL (possibly local) of your experiment.
Unless you run your experiment strictly locally on your own (lab) computer(s), you also need to launch the experiment as a website on some hosting service. A possibility for doing so is described in the section on hosting on Netlify.
Changing deploy information
Deployment information is defined in magpie.config.js
, as shown below:
export default {
// Either 'debug', 'directLink' or 'prolific'
// While set to 'debug', the SubmitResultsScreen will not submit any results to your backend
// and will instead show them directly on screen for debugging
mode: 'debug',
experimentId: 'INSERT_A_NUMBER',
serverUrl: 'https://magpie-demo.herokuapp.com/',
socketUrl: 'wss://magpie-demo.herokuapp.com/socket',
contactEmail: 'test@example.com',
// this will be used in prolific mode
completionUrl: 'https://...',
// set the interface language of magpie built-in components
// currently only
// - en
// - de
language: 'en',
};
None of these fields matter for the debug
mode. But for any of the other modes, you should specify appropriate information to the following fields:
contactEmail
should contain an appropriate email address which will be displayed in an alert box in case of errors, so your participants can directly reach out to you.experimentId
must contain the ID the magpie server app provided for your experiment when created it online (see the section on server app use for more information).serverUrl
is the URL (possibly local) to your server app instance which handles the data (see the section on server app use for more information).completionUrl
is only necessary if you use theProlific
deploy mode. In that case you need to enter here the return URL given to you when you create your experiment on the Prolific website (see information below).language
can be set to match the locale of your participants, so magpie built-in components are translated into the locale of your participants.