updates for debian

This commit is contained in:
David Bomba
2024-11-22 13:48:50 +11:00
parent b65257db66
commit 1f778c0945
9 changed files with 168 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/sh
php artisan db:seed --force
# Build up array of arguments...
if [[ ! -z "${IN_USER_EMAIL}" ]]; then
email="--email ${IN_USER_EMAIL}"
fi
if [[ ! -z "${IN_PASSWORD}" ]]; then
password="--password ${IN_PASSWORD}"
fi
php artisan ninja:create-account $email $password