fileHost/run.py
2018-02-19 23:01:28 -05:00

11 lines
165 B
Python
Executable File

#!/usr/bin/env python3
"""
Starts the bjoern wcgi server.
"""
import bjoern
from imageHost import app
if __name__ == "__main__":
bjoern.run(app, "0.0.0.0", 5000)