11 lines
165 B
Python
11 lines
165 B
Python
|
#!/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)
|