my-idlers/run.sh

22 lines
448 B
Bash
Raw Normal View History

2022-03-13 21:09:50 +01:00
#!/bin/sh
# TODO: global env vars aren't used.
cat > /app/.env.production << EOF
APP_NAME=MyIdlers
2022-03-13 21:19:24 +01:00
APP_DEBUG=false
2022-03-13 21:09:50 +01:00
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}
ASSET_URL=${ASSET_URL}
EOF
# TODO: only run this once
php artisan key:generate
php artisan migrate:fresh --seed --force
php artisan serve --host=0.0.0.0 --port=8000 --env=production