From ead4511250deb877e1867c2e38cbee9c27deb299 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 16 Jul 2018 22:25:50 +0200 Subject: add the infrastructure for an embedded web UI + command --- webui/public/favicon.ico | Bin 0 -> 3870 bytes webui/public/index.html | 40 ++++++++++++++++++++++++++++++++++++++++ webui/public/manifest.json | 15 +++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 webui/public/favicon.ico create mode 100644 webui/public/index.html create mode 100644 webui/public/manifest.json (limited to 'webui/public') diff --git a/webui/public/favicon.ico b/webui/public/favicon.ico new file mode 100644 index 00000000..a11777cc Binary files /dev/null and b/webui/public/favicon.ico differ diff --git a/webui/public/index.html b/webui/public/index.html new file mode 100644 index 00000000..ed0ebafa --- /dev/null +++ b/webui/public/index.html @@ -0,0 +1,40 @@ + + + + + + + + + + + React App + + + +
+ + + diff --git a/webui/public/manifest.json b/webui/public/manifest.json new file mode 100644 index 00000000..ef19ec24 --- /dev/null +++ b/webui/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": "./index.html", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} -- cgit