smart-underworld / seestar_alp

Complete Control and Automation for Seestar S50
Other
67 stars 32 forks source link

Front end broken in Docker container #32

Closed pcyvr closed 2 months ago

pcyvr commented 3 months ago

The front end no longer works when using the Docker container. I suspect app.py (line 595)

with make_server("127.0.0.1", 5432, app, handler_class=LoggingWSGIRequestHandler) as httpd:

should be

with make_server("0.0.0.0", 5432, app, handler_class=LoggingWSGIRequestHandler) as httpd:

erewhon commented 3 months ago

@wileecyte said he'll do it.

wileecyte commented 2 months ago

Made the front end UI use options from config.toml. Added a new 'uiport' to specify something other than 5432 Updated the docker/config.toml.example to add uiport.

erewhon commented 2 months ago

Resolved by #42