Ejemplo n.º 1
0
#!/usr/bin/env python

import argparse
from config import to_envvar, DEFAULT_CONF_PATH

parser = argparse.ArgumentParser(description='Run the SkyLines debug server.')
parser.add_argument('conf_path',
                    nargs='?',
                    metavar='config.ini',
                    help='path to the configuration INI file')

args = parser.parse_args()

if not to_envvar(args.conf_path):
    parser.error('Config file "{}" not found.'.format(args.conf_path))

if __name__ == '__main__':
    from skylines import app
    app.add_web_components()
    app.run(port=8080, extra_files=[DEFAULT_CONF_PATH, args.conf_path or ''])
Ejemplo n.º 2
0
#!/usr/bin/env python

import argparse
from config import to_envvar, DEFAULT_CONF_PATH

parser = argparse.ArgumentParser(description='Run the SkyLines debug server.')
parser.add_argument('conf_path', nargs='?', metavar='config.ini',
                    help='path to the configuration INI file')

args = parser.parse_args()

if not to_envvar(args.conf_path):
    parser.error('Config file "{}" not found.'.format(args.conf_path))

if __name__ == '__main__':
    from skylines import app
    app.add_web_components()
    app.run(port=8080, extra_files=[DEFAULT_CONF_PATH, args.conf_path or ''])
Ejemplo n.º 3
0
def setup():
    # Setup the Flask app
    app.add_web_components()

    # Setup the database
    setup_app()
Ejemplo n.º 4
0
def setup():
    # Setup the Flask app
    app.add_web_components()

    # Setup the database
    setup_app()