Use local web server instead of Casselman

This commit is contained in:
Patrick McDonagh
2016-12-09 16:28:21 -06:00
parent f9a7bed354
commit cbf89704d9

View File

@@ -18,8 +18,8 @@ requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
requests.packages.urllib3.disable_warnings(InsecurePlatformWarning)
API_HTTP_TYPE = "https"
API_DEVICE_ADDRESS = "casselman16-8.callon.poconsole.net"
API_DEVICE_PORT = 8081
API_DEVICE_ADDRESS = "192.168.1.30"
API_DEVICE_PORT = 5000
API_BASE_URL = "{}://{}:{}".format(API_HTTP_TYPE, API_DEVICE_ADDRESS, API_DEVICE_PORT)