This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
WebSlider/server.py

8 lines
108 B
Python
Raw Permalink Normal View History

#!/usr/bin/python3
from waitress import serve
import slider
2018-11-10 17:34:24 +00:00
serve(slider.app, host="0.0.0.0", port=5000)