parser.add_argument("--execute-site",dest="execute_site",required=True,default="local",help="Target execute site. Sites should be defined in configuration.")
parser.add_argument("--output-site",dest="output_site",required=True,default="local",help="Target output site. Site should be defined in configuration.")
parser.add_argument("--save-db",dest="save_db",default=True,type=bool,help="Whether or not to save results to the database. Default: True")
parser.add_argument("--no-save-db",dest="save_db",default=True,action="store_false",help="Whether or not to save results to the database. Default: True")
parser.add_argument("--rewrite",dest="rewrite",default=False,action="store_true",help="If specified, don't load from the database, rewrite files.")
parser.add_argument("--debug",dest="debug",default=False,action="store_true",help="Print out more information while generating.")