We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Using prolific you could script creating multiple applications in one go. An example using bash is shown below:
prolific
#!/usr/bin/env bash STUDIES=( docs/examples/star-wars.json docs/examples/star-trek.json ) for study in "${STUDIES[@]}"; do echo "Creating study for ${study}" if prolific study create -t "${study}" -p -s ; then echo " Created" else echo " Error" fi done