demo.yaml 620 Bytes
title: Example
database: students.db
path: ./demo

# values applie to each topic, if undefined there
# default values are: file=question.yaml, shuffle=True, choose: all
file: questions.yaml
shuffle: True
choose: 6
forgetting_factor: 0.99

# 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