aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
blob: d0bf98224f42eab2e7a9825687627b0f97f35b79 (plain)
1
2
3
4
5
6
#! /usr/bin/env python
# -*- coding: utf-8 -*-

from pyaggr3g470r import app

app.run(host='0.0.0.0', debug=True)
bgstack15