mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
- Use Node.js runtime instead of OpenResty/NGINX - Clone isle.pizza frontend from master branch - Add entrypoint script that runs prepare:assets and starts Vite - Remove ISLE_EMSCRIPTEN_HOST build flag - Delete nginx.conf (no longer needed)
9 lines
184 B
Bash
9 lines
184 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Setting up LEGO Island assets..."
|
|
npm run prepare:assets -- -f -p /assets
|
|
|
|
echo "Starting development server..."
|
|
exec npm run dev -- --host 0.0.0.0 --port 6931
|