init project

This commit is contained in:
root
2026-04-23 00:21:02 -04:00
parent 23826c5528
commit 9191fd32f0
64 changed files with 10229 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
set -e
cd /app
if [ ! -f node_modules/.installed ]; then
export CI=true
export npm_config_maxsockets=1
export NPM_CONFIG_LEGACY_PEER_DEPS=true
npm install --no-audit --no-fund
touch node_modules/.installed
fi
exec npm run dev -- --host 0.0.0.0 --port 5173