# Config UI a web app to edit and action on update ## Api ### Files `GET /api/files` res: ```json { "test": { "path": "test", "name": "test", "action": "myip local -P", "data": "" } } ``` ### File `GET /api/file?name=ALIAS` res: ```json { "action": "myip local -P", "data": "test", "name": "test", "path": "test" } ``` ### Update `POST /api/file` req: ```json { "data": "test", "name": "test", } ``` ### Apply `POST /api/apply?name=ALIAS`