added comments to document config options

This commit is contained in:
Rudi Grinberg 2012-11-19 16:03:25 -05:00
parent c784df7f6e
commit 647832b0a0
1 changed files with 4 additions and 3 deletions

View File

@ -32,8 +32,9 @@ def main(main_cfg):
if __name__ == '__main__': if __name__ == '__main__':
default = { default = {
'log_config' : '', # config for log 'log_path' : join(root, 'test.log'), # config for log
'log_path' : '', # where to log 'log_config' : join(root, 'configs/logging.cfg'), # where to log
'instance_root' : '' # root dir of all instances # root dir of all instances
'instance_root' : join(root, 'saas_stub')
} }
main(default) main(default)