7 lines
108 B
Python
Executable file
7 lines
108 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
from waitress import serve
|
|
|
|
import slider
|
|
|
|
serve(slider.app, host="0.0.0.0", port=5000)
|