11 lines
165 B
Python
Executable File
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)
|