Commit cecca288383185c27407e17fd24bce62ae9c9d63
1 parent
5e2c5e62
Exists in
master
and in
1 other branch
fix demo/tutorial.yaml to match documentation
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
demo/tutorial.yaml
... | ... | @@ -13,11 +13,11 @@ duration: 120 |
13 | 13 | |
14 | 14 | # Database with student credentials and grades of all questions and tests done |
15 | 15 | # The database is an sqlite3 file generate with the script initdb.py |
16 | -database: demo/students.db | |
16 | +database: students.db | |
17 | 17 | |
18 | 18 | # Generate a file for each test done by a student. |
19 | 19 | # It includes the questions, answers and grades. |
20 | -answers_dir: demo/ans | |
20 | +answers_dir: ans | |
21 | 21 | |
22 | 22 | # (optional, default: False) Show points for each question, scale 0-20. |
23 | 23 | show_points: true |
... | ... | @@ -28,7 +28,7 @@ show_points: true |
28 | 28 | # Base path applied to the questions files and all the scripts |
29 | 29 | # including question generators and correctors. |
30 | 30 | # Either absolute path or relative to current directory can be used. |
31 | -questions_dir: demo | |
31 | +questions_dir: . | |
32 | 32 | |
33 | 33 | # (optional) List of files containing questions in yaml format. |
34 | 34 | # Selected questions will be obtained from these files. | ... | ... |