aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
blob: a498cb49599ece67ec5bcbac49e3791b038c5c86 (plain) (blame)
1
2
3
4
5
6
7
8
"""
Primary entry point for the app
"""

from demo import APP

if __name__ == "__main__":
    APP.run(host=APP.config["IP"], port=int(APP.config["PORT"]))