#!/usr/bin/env python
#
# If you wish to inject your own configuration, set a default bucket, or
# override the default manifest path, make a copy of this file.

def main():
    import sys
    from baiji.pod import AssetCache
    from baiji.pod.runners.prefill_runner import PrefillRunner

    cache = AssetCache.create_default()

    runner = PrefillRunner(
        cache=cache,
        default_vc_manifest_path='versioned_assets.json',
        default_vc_bucket=None)

    return_status = runner.main()

    sys.exit(return_status)

if __name__ == '__main__':
    main()
