From 07713f14255a9b3456f8ee8219789c08ae38d690 Mon Sep 17 00:00:00 2001 From: Joxit Date: Sat, 22 Jul 2023 23:59:59 +0200 Subject: [PATCH] docs: add information on how to run development environment (#314) fixes #314 --- Developing.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Developing.md diff --git a/Developing.md b/Developing.md new file mode 100644 index 0000000..8e99efb --- /dev/null +++ b/Developing.md @@ -0,0 +1,19 @@ +# How to build Docker Registry UI + +This file contains tips to help you take (and understand) your first steps in Docker Registry UI development. + +## Clone and install the repository + +```bash +git clone https://github.com/Joxit/docker-registry-ui.git +cd docker-registry-ui +npm install +``` + +## Run the local server + +```bash +npm start +``` + +Open your browser you can configure your options by updating the `src/index.html` file. \ No newline at end of file