demo.yaml 539 Bytes
title: Example
database: students.db

# default global values
file: questions.yaml
shuffle: True
choose: 6

# path prefix applied to the topics
path: ./demo

# Representation of the edges of the dependency graph.
# Example: A depends on B and C
#     A:
#       name: Topic A
#       deps:
#         - B
#         - C
topics:

  # topic without dependencies
  math:
    name: Matemática
    file: questions.yaml
    choose: 6
    shuffle: True

  # topic with one dependency
  solar_system:
    name: Sistema solar
    deps:
      - math