all repos — artbound-python @ 6a4f346df6df7b919801e40fc79b385ae0b9f38b

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