From c1c0e9918740c09b1097e8d32bb587c933bb57b0 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Thu, 28 Sep 2023 21:07:47 -0700 Subject: [PATCH 01/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bb2eb0c2..804aad6c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ #### This documentation project is DEPRECATED, if you want to update or add a new documentation, please go to our new documentation project: -- [documentation-en](https://github.com/tronprotocol/documentation-en) +- [documentation-en](https://github.com/tronprotocol/documentation-en) (https://github.com/tronprotocol/documentation-en) - [documentation-zh](https://github.com/tronprotocol/documentation-zh) From 8ab4c57d8d40175806f6264114313906becc0d53 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Tue, 10 Oct 2023 10:48:28 -0700 Subject: [PATCH 02/10] Create laravel.yml --- .github/workflows/laravel.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/laravel.yml diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml new file mode 100644 index 00000000..a5f2bc58 --- /dev/null +++ b/.github/workflows/laravel.yml @@ -0,0 +1,35 @@ +name: Laravel + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: '8.0' + - uses: actions/checkout@v3 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: vendor/bin/phpunit From be5daf7f06462369d9ab7a76a8786ffc88c5262f Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Tue, 10 Oct 2023 10:54:21 -0700 Subject: [PATCH 03/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 804aad6c..2dd6f23e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ #### This documentation project is DEPRECATED, if you want to update or add a new documentation, please go to our new documentation project: - [documentation-en](https://github.com/tronprotocol/documentation-en) (https://github.com/tronprotocol/documentation-en) -- [documentation-zh](https://github.com/tronprotocol/documentation-zh) +-github.com/tronprotocol/documentation-en [documentation-zh](https://github.com/tronprotocol/documentation-zh) From 102216dd96661d26a49d342e0c71035211a7cea9 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:59:29 -0700 Subject: [PATCH 04/10] Create jekyll-gh-pages.yml --- .github/workflows/jekyll-gh-pages.yml | 51 +++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/jekyll-gh-pages.yml diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 00000000..482459b8 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 From 282e31b5a13f295da6486856a27bab3e9280545a Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:31:59 -0700 Subject: [PATCH 05/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2dd6f23e..a74e9ea5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ #### This documentation project is DEPRECATED, if you want to update or add a new documentation, please go to our new documentation project: -- [documentation-en](https://github.com/tronprotocol/documentation-en) (https://github.com/tronprotocol/documentation-en) +- [documentation-en](https://github.com/tronprotocol/documentation-en) (https://github.com/tronprotocol/documentation-en -github.com/tronprotocol/documentation-en [documentation-zh](https://github.com/tronprotocol/documentation-zh) From 0bc39f8c43494fbe907d6cc8133e7a468fe30db4 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:28:44 -0700 Subject: [PATCH 06/10] Update jekyll-gh-pages.yml --- .github/workflows/jekyll-gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index 482459b8..07d4431c 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -1,4 +1,4 @@ -# Sample workflow for building and deploying a Jekyll site to GitHub Pages +dce7417cb862d730044e8f1498aa2ea48e493593# Sample workflow for building and deploying a Jekyll site to GitHub Pages name: Deploy Jekyll with GitHub Pages dependencies preinstalled on: From ad937dae63aea28f4c50bfe54d7cbfac7aa2a202 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:30:25 -0700 Subject: [PATCH 07/10] Update laravel.yml --- .github/workflows/laravel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index a5f2bc58..d44ad8f3 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -1,5 +1,5 @@ name: Laravel - +[![Laravel](https://github.com/srbaeza-ai/documentation/actions/workflows/laravel.yml/badge.svg?branch=srbaeza-ai-patch-1)](https://github.com/srbaeza-ai/documentation/actions/workflows/laravel.yml) on: push: branches: [ "master" ] From 7310ca0c391701349d2138498fe36f08b2b71693 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Fri, 3 Nov 2023 04:51:18 -0700 Subject: [PATCH 08/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a74e9ea5..3453f8a7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -#### This documentation project is DEPRECATED, if you want to update or add a new documentation, please go to our new documentation project: +https://github.com/CVEProject/cvelistV5/actions/runs/6241198539#### This documentation project is DEPRECATED, if you want to update or add a new documentation, please go to our new documentation project: - [documentation-en](https://github.com/tronprotocol/documentation-en) (https://github.com/tronprotocol/documentation-en -github.com/tronprotocol/documentation-en [documentation-zh](https://github.com/tronprotocol/documentation-zh) From 2ff81c4bb91746ec47547e85708fce3fc952076e Mon Sep 17 00:00:00 2001 From: trondev <153363003+trondev01@users.noreply.github.com> Date: Wed, 15 May 2024 22:00:47 +0800 Subject: [PATCH 09/10] =?UTF-8?q?Update=20=E7=AC=AC=E4=B8=80=E5=B1=8A?= =?UTF-8?q?=E6=B3=A2=E5=9C=BA=E7=BC=96=E7=A8=8B=E5=A4=A7=E8=B5=9B.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\234\272\347\274\226\347\250\213\345\244\247\350\265\233.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/\344\270\255\346\226\207\346\226\207\346\241\243/\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233/\347\254\254\344\270\200\345\261\212\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233.md" "b/\344\270\255\346\226\207\346\226\207\346\241\243/\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233/\347\254\254\344\270\200\345\261\212\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233.md" index e95c92d0..183b1a8c 100644 --- "a/\344\270\255\346\226\207\346\226\207\346\241\243/\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233/\347\254\254\344\270\200\345\261\212\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233.md" +++ "b/\344\270\255\346\226\207\346\226\207\346\241\243/\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233/\347\254\254\344\270\200\345\261\212\346\263\242\345\234\272\347\274\226\347\250\213\345\244\247\350\265\233.md" @@ -70,7 +70,7 @@ 陈志强Lucien Chen:波场CTO -赵宏Marcus Zhao:波场技术总监 +Marcus:波场技术总监 ## 参与方式 From b1c0c7fd375c045da700b07d9ccaeda7718f5e10 Mon Sep 17 00:00:00 2001 From: srbaeza-ai <145781538+srbaeza-ai@users.noreply.github.com> Date: Thu, 27 Jun 2024 01:35:18 -0700 Subject: [PATCH 10/10] Create devcontainer.json --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..32b49652 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +https://github.com/srbaeza-ai/documentation.git{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + } +}