You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just notes for anyone coming to this and wanting to edit automations, open the Docker container, click the 'CLI' icon on "lw_mysql".
At the command line, login to SQL with: mysql homestead --user=homestead --password=secret
Then edit automations using raw sql (here's the one I have to trigger a BlueIris camera to record in HD):
show tables;
select * from web_request_configs;
update web_request_configs set url='http://192.168.x.x:81/admin?trigger&camera=driveway_1&user=aiuser&pw=aipassword' where id=4;
Currently the only way to edit the automations is through the sql database. It would probably be nice if we could edit those using the ui.
The text was updated successfully, but these errors were encountered: