""" Main entry point for the watermark detection application. Run with: python run.py docker build -t wm-detector . docker run -p 7860:7860 wm-detector """ from wm_detector.web.app import app if __name__ == "__main__": app.run(host='0.0.0.0', port=7860)