all repos — artbound-python @ 59880ee3e9ba90fe6f77fc0463a617aec3f8907d

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')