Frontend: correction first start
This commit is contained in:
@ -1,3 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
FIRST_RUN_FLAG_FILE="/.first-run"
|
||||
|
||||
if [ ! -e "$FIRST_RUN_FLAG_FILE" ]; then
|
||||
echo "Installing dependencies. Please wait..."
|
||||
npm install
|
||||
|
||||
touch "$FIRST_RUN_FLAG_FILE"
|
||||
fi
|
||||
|
||||
|
||||
npm start -- --host 0.0.0.0 --port 8000
|
Reference in New Issue
Block a user