salvus.project.configuration.project_configuration
Classes
ProjectConfig
ProjectConfigclass ProjectConfig(builtins.object):
def __init__(self, filename: pathlib.Path):
...General project configuration.
Right now this is pretty simple but might be expanded in the future.
Parameters
filenamepathlib.Path — Where to store the configuration
Methods
init_with_initial_values()
init_with_initial_values()def init_with_initial_values(
filename: pathlib.Path, initial_values: Dict
) -> ProjectConfig:
...Init a project configuration with a set of initial values.
Parameters
filenamepathlib.Path — Where to store the file.initial_valuesDict — Dictionary of initial values.
Returns ProjectConfig