#!/usr/bin/env python

"""Launch script from the bin folder."""

import os, sys
import phatch

sys.path.insert(0,os.path.dirname(phatch.__file__))

from core import config
config_paths = config.init_config_paths()

from phatch.app import main
main(config_paths, app_file = __file__)
