Files
data-collection-terminal/management-panel/entrypoint.sh

14 lines
241 B
Bash

#!/bin/bash
mkdir -p storage/app/{public,tenants}
mkdir -p storage/logs
if [ ! -f /app/storage/app/database.sqlite ]; then
cat .env
touch /app/storage/app/database.sqlite
php artisan migrate --seed --force
fi
php artisan migrate
$@