Ensure that both MariaDB and PostgreSQL are installed and running on your server.
Add these to your .env:
MARIADB_HOST=
MARIADB_DATABASE=
MARIADB_USERNAME=
MARIADB_PASSWORD=Run these commands in order. This sets up all migrations in PostgreSQL and migrates data from MariaDB.
php artisan db:wipe
php artisan migrate
php artisan game:add-version --default <SC_UNPACKED_DATA_VERSION>
php artisan data:migrate --all
php artisan db:seed
php artisan game:sync
php artisan starmap:sync
# Let the job runner finish processing all jobs
php artisan queue:work
# After ALL jobs have finished
php artisan data:migrate-translations