all repos — artbound-python @ bb331c5170916a5958ae4d3054d7bec96df5d84b

A client-server reimplementation of the administration panel for ArtBound.

artbound_python/__main__.py (view raw)

1from waitress import serve
2from artbound_python import app
3
4serve(app, listen='*:1111')