diff options
author | Yingtong Li <runassudo@yingtongli.me> | 2017-03-28 22:28:12 +1100 |
---|---|---|
committer | Yingtong Li <runassudo@yingtongli.me> | 2017-03-28 22:28:12 +1100 |
commit | ce73df9633417644203dfdcd509dda8b6c1fb85e (patch) | |
tree | 92cb899096b66b761cb70a349931ad5bcbbb5f81 | |
parent | a3e7b6e63df997145ec12e020968d094247c4520 (diff) |
Add README
-rw-r--r-- | README.md | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..cb67d50 --- /dev/null +++ b/README.md @@ -0,0 +1,65 @@ +# PBLive + +PBLive is an open-source self-hosted live online quiz tool, similar to Kahoot and Socrative. + +## Installing and running + + virtualenv venv + . venv/bin/activate + pip install -r requirements.txt + python -m pblive.__init__ + +Navigate to http://1.2.3.4:5000/admin to begin. + +## Example + +Place in `data/example.yaml`, where the `data` directory is a sibling of this README: + + title: Example quiz + questions: + - type: landing + - type: mcq + prompt: This is a multiple-choice question + answers: [A, B, C, D] + - type: type + prompt: This is a basic short answer question + answer_form: $1 + - type: type + prompt: The answer to this short answer question is a probability + answer_form: 1 in $1 + - type: draw + prompt: Draw on the diagram + image: some_image.gif + - type: speed + prompt: A speed quiz is like multiple-choice, but starts a two second countdown once the first answer is submitted to each question. + answers: [Option 1, Option 2, Option 3] + - type: speed + prompt: This will automatically continue until the last speed question in a row is completed. + answers: [Option 1, Option 2, Option 3] + - type: speed + prompt: The answers to the speed questions are reviewed in a review stage following the final question. + answers: [Option 1, Option 2, Option 3] + - type: speed_review + +Files like `some_image.gif` should be placed within the `img` subfolder of `data`. + +## Security + +There is none. Watch this space. + +## Licence + + Copyright © 2017 RunasSudo (Yingtong Li) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. |