Initial commit

This commit is contained in:
Logisim-Evolution
2025-06-07 11:10:44 +00:00
commit 9829dfc6b5
9 changed files with 175 additions and 0 deletions

11
images/init_laravel.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
composer install
# Create .env if it does not exist
if ! [ -e ".env" ] ; then
cp /init/.env .
php artisan key:generate
fi
php artisan migrate --force
php artisan serve --host=0.0.0.0 --port=8000