forked from fedora-infra/anitya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runserver.py
executable file
·50 lines (40 loc) · 1.3 KB
/
runserver.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" The flask application """
import argparse
import sys
import os
parser = argparse.ArgumentParser(
description='Run the anitya app')
parser.add_argument(
'--config', '-c', dest='config',
help='Configuration file to use for anitya.')
parser.add_argument(
'--debug', dest='debug', action='store_true',
default=False,
help='Expand the level of data returned.')
parser.add_argument(
'--profile', dest='profile', action='store_true',
default=False,
help='Profile the anitya application.')
parser.add_argument(
'--port', '-p', default=5000,
help='Port for the flask application.')
parser.add_argument(
'--host', default='127.0.0.1',
help='IP address for the flask application to bind to.'
)
args = parser.parse_args()
if args.profile:
from werkzeug.contrib.profiler import ProfilerMiddleware
APP.config['PROFILE'] = True
APP.wsgi_app = ProfilerMiddleware(APP.wsgi_app, restrictions=[30])
if args.config:
config = args.config
if not config.startswith('/'):
here = os.path.join(os.path.dirname(os.path.abspath(__file__)))
config = os.path.join(here, config)
os.environ['ANITYA_WEB_CONFIG'] = config
from anitya.app import APP
APP.debug = True
APP.run(port=int(args.port), host=args.host)