blob: b9a10dd767c18ff9a84f9414de1c002504c28c70 (
plain)
1
2
3
4
5
6
7
8
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import conf
from pyaggr3g470r import app
app.run(host=conf.WEBSERVER_HOST, port=conf.WEBSERVER_PORT, \
debug=conf.WEBSERVER_DEBUG)
|