A tool for quickly building and releasing surveys. Open source & quick to host it yourself.
What's needed:
curl https://install.meteor.com/ | sh
if it's not already installedgit clone git@github.com:simonv3/quick-survey
and change directory cd quick-survey
.meteor npm install
to get all the npm packages working.SANDSTORM=1 meteor
.
Sandstorm=1 tells the app to pretend it's running inside of Meteor.If you want to add an administrator, you'll need to use the API made available by meteor-accounts-sandstorm. Then add a user like so:
SandstormAccounts.setTestUserInfo({
id: 1,
name: "Alice",
permissions: ['owner']
});