From e8ad5ca35e27b2b3f7629c7ce62e88ef3bd6ac0c Mon Sep 17 00:00:00 2001 From: didier Date: Sat, 30 Nov 2024 11:57:39 +0100 Subject: [PATCH 1/3] remove tests from github --- .github/workflows/ci.yaml | 74 ++++++++++++++++++++------------------- 1 file changed, 38 insertions(+), 36 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7f6aa57a..dc8a49ce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -66,39 +66,41 @@ jobs: run: | mysql mercator --host 127.0.0.1 --port 3306 -uroot < mercator_data.sql - - name: Install Chrome Driver - run: php artisan dusk:chrome-driver --detect - - - name: Check Chrome Driver version - run: ./vendor/laravel/dusk/bin/chromedriver-linux -v - - - name: Start Chrome Driver - run: ./vendor/laravel/dusk/bin/chromedriver-linux --port=9515 & - - - name: Run Laravel Server - run: php artisan serve --no-reload & - - - name: Run Dusk Tests - env: - APP_ENV: local - APP_URL: "http://127.0.0.1:8000" - DB_CONNECTION: mysql - DB_DATABASE: mercator - DB_PORT: ${{ job.services.mysql.ports[3306] }} - DB_USER: root - run: | - php artisan dusk --stop-on-error --stop-on-failure - - - name: Upload Screenshots - if: failure() - uses: actions/upload-artifact@v4 - with: - name: screenshots - path: tests/Browser/screenshots - - - name: Upload Console Logs - if: failure() - uses: actions/upload-artifact@v4 - with: - name: console - path: tests/Browser/console +# SKIP Test on GitHub +# +# - name: Install Chrome Driver +# run: php artisan dusk:chrome-driver --detect +# +# - name: Check Chrome Driver version +# run: ./vendor/laravel/dusk/bin/chromedriver-linux -v +# +# - name: Start Chrome Driver +# run: ./vendor/laravel/dusk/bin/chromedriver-linux --port=9515 & +# +# - name: Run Laravel Server +# run: php artisan serve --no-reload & +# +# - name: Run Dusk Tests +# env: +# APP_ENV: local +# APP_URL: "http://127.0.0.1:8000" +# DB_CONNECTION: mysql +# DB_DATABASE: mercator +# DB_PORT: ${{ job.services.mysql.ports[3306] }} +# DB_USER: root +# run: | +# +# php artisan dusk --stop-on-error --stop-on-failure +# - name: Upload Screenshots +# if: failure() +# uses: actions/upload-artifact@v4 +# with: +# name: screenshots +# path: tests/Browser/screenshots +# +# - name: Upload Console Logs +# if: failure() +# uses: actions/upload-artifact@v4 +# with: +# name: console +# path: tests/Browser/console From 637b9072f4a3ecaca1b155403bc74aa3ed24674b Mon Sep 17 00:00:00 2001 From: didier Date: Sun, 1 Dec 2024 16:51:18 +0100 Subject: [PATCH 2/3] upgrave version --- resources/views/partials/menu.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/menu.blade.php b/resources/views/partials/menu.blade.php index e0b64780..527be74a 100644 --- a/resources/views/partials/menu.blade.php +++ b/resources/views/partials/menu.blade.php @@ -810,5 +810,5 @@ - + From 3671ccbf3f874304e701b296673f1d393a863e02 Mon Sep 17 00:00:00 2001 From: didier Date: Tue, 3 Dec 2024 11:24:01 +0100 Subject: [PATCH 3/3] add parameter page --- .../views/admin/config/parameters.blade.php | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 resources/views/admin/config/parameters.blade.php diff --git a/resources/views/admin/config/parameters.blade.php b/resources/views/admin/config/parameters.blade.php new file mode 100644 index 00000000..b111a03c --- /dev/null +++ b/resources/views/admin/config/parameters.blade.php @@ -0,0 +1,46 @@ +@extends('layouts.admin') +@section('content') +
+ @method('PUT') + @csrf +
+
+ {{ trans("cruds.configuration.parameters.title") }} +
+
+
+ +
+ +
+ +
+ {{ trans("cruds.menu.logical_infrastructure.title_short") }} +
+ +
+ +
+ +
+ + +
+
+
+
+ +
+ + {{ trans('global.back_to_list') }} + + +
+ + +
+ +@endsection