From db05ff5e9899947cafaec616194678b5eec03913 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Sat, 8 May 2021 12:35:22 -0400 Subject: [PATCH 1/5] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 66b67f7..e4d4039 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +
+

I'm looking for someone that have experiences on migrating this project to a Docker app, with a complete solution ;) If you know how please comment in here.

+
+

@@ -11,9 +15,7 @@

Monitoring WireGuard is not convinient, need to login into server and type wg show. That's why this platform is being created, to view all configurations and manage them in a easier way.

-
-

I'm looking for someone that have experiences on migrating this project to a Docker app, with a complete solution ;) If you know how please comment in here.

-
+ ## 📣 What's New: Version 2.0 From c53b0fe2d405f56be360a2f85f8b5f9da306e903 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Thu, 13 May 2021 19:38:22 -0400 Subject: [PATCH 2/5] Create main.yml --- .github/workflows/main.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..10c4d63 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,29 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +on: + release: + types: [released] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From 3b2344b477e1ef6526031bcafb6da0cecbeea1d4 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Thu, 13 May 2021 19:51:54 -0400 Subject: [PATCH 3/5] Delete .github/workflows directory --- .github/workflows/main.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 10c4d63..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -on: - release: - types: [released] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. From 1213a030e37cc6b85cf79fa6776a3614a1672599 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Thu, 13 May 2021 19:54:37 -0400 Subject: [PATCH 4/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e4d4039..d1fa757 100644 --- a/README.md +++ b/README.md @@ -143,9 +143,9 @@ All these settings will be able to configure within the dashboard in **Settings* ## ❓ How to update the dashboard? -``` +```{shell} $ cd wireguard-dashboard -$ sudo sh wgd.sh update # Perform update +$ sudo git pull https://github.com/donaldzou/wireguard-dashboard.git v2.0 --force # Perform update $ sudo sh wgd.sh start # Start dashboard ``` From 1bcc8fed5ed526eb0d852a5f06a1a39adba6a341 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Fri, 2 Jul 2021 12:00:12 -0400 Subject: [PATCH 5/5] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index d1fa757..6b51342 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,6 @@ $ sudo sh wgd.sh start # Start the dashboard in background $ sudo sh wgd.sh debug # Start the dashboard in foreground (debug mode) $ sudo sh wgd.sh stop # Stop the dashboard $ sudo sh wgd.sh restart # Restart the dasboard -$ sudo sh wgd.sh update # Update the dashboard ``` ⚠️ **For first time user please also read the next section.**