my-idlers/run.sh
2022-03-23 14:10:27 +00:00

23 lines
517 B
Bash
Executable file

#!/bin/sh
# Run setup only if .env file doesn't exist.
if [ ! -e .env.production ]
then
cat > .env.production << EOF
APP_NAME=MyIdlers
APP_DEBUG=false
APP_KEY=
DB_CONNECTION=mysql
DB_HOST=${DB_HOST}
DB_DATABASE=${DB_DATABASE}
DB_USERNAME=${DB_USERNAME}
DB_PASSWORD=${DB_PASSWORD}
APP_URL=${APP_URL:-http://localhost:8000}
APP_FORCE_SSL=${APP_FORCE_SSL:-false}
EOF
php artisan key:generate --no-interaction --force
fi
# php artisan migrate:fresh --seed
php artisan serve --host=0.0.0.0 --port=8000 --env=production