diff --git a/bin/build.sh b/bin/build.sh new file mode 100755 index 0000000..dcc52ec --- /dev/null +++ b/bin/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cp -r ./ ~/temp-lucent +cd ~/temp-lucent && npm run build +rm -rf ~/temp-lucent/node_modules +rm -rf ~/temp-lucent/.git +cd ~/ +zip -r lucent.zip temp-lucent/ +rm -rf ~/temp-lucent diff --git a/bin/lucent-serve b/bin/lucent-serve new file mode 100755 index 0000000..5643a27 --- /dev/null +++ b/bin/lucent-serve @@ -0,0 +1,3 @@ +#!/bin/bash + +php8.2 artisan serve --port 8197 diff --git a/bin/phpstan.sh b/bin/phpstan.sh new file mode 100755 index 0000000..265c86b --- /dev/null +++ b/bin/phpstan.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +php8.2 ./vendor/bin/phpstan analyse -c phpstan.neon diff --git a/composer.json b/composer.json index 519331e..c256fce 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,6 @@ "files": [ "src/Response.php", "src/macros.php", - "src/Schema/Functions.php", "src/File/Uploader.php" ] }, diff --git a/front/js/svelte/account/Register.svelte b/front/js/svelte/account/Register.svelte index 453ea5f..ec9c9a1 100644 --- a/front/js/svelte/account/Register.svelte +++ b/front/js/svelte/account/Register.svelte @@ -1,14 +1,11 @@ -