X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=start.sh;h=0a13477eec2c6ddd750bad1539925b9274996ca1;hb=4d8f08f9c825c35ed3e05ce92457c2fc2e2194c6;hp=9967ed8980c211d12e2e5fccc3d7e79c47bc339e;hpb=e16480a383e38dc72ab747ef8bf8b6f02de63f44;p=perso%2FImmae%2FProjets%2FNodejs%2FSurfer.git diff --git a/start.sh b/start.sh index 9967ed8..0a13477 100755 --- a/start.sh +++ b/start.sh @@ -3,6 +3,27 @@ set -eu export NODE_ENV=production +export TOKENSTORE_FILE=/app/data/tokens.json -cd /app/code -app.js /app/data +if [[ ! -d "/app/data/surfer_root" ]]; then + echo "=> Migrating root folder from /app/data to /app/data/surfer_root" + + mkdir -p /app/data/surfer_root + for file in `find /app/data -maxdepth 1 -mindepth 1 -type f -printf "%f\n"`; do + echo " => Moving /app/data/${file}" + mv "/app/data/${file}" /app/data/surfer_root + done + + for dir in `find /app/data -maxdepth 1 -mindepth 1 -type d -printf "%f\n"`; do + if [[ "$dir" != "surfer_root" ]]; then + echo " => Moving /app/data/${dir}" + mv "/app/data/${dir}" /app/data/surfer_root + fi + done +fi + +echo "=> Ensure permissions" +chown -R cloudron:cloudron /app/data + +echo "=> Start the server" +exec /usr/local/bin/gosu cloudron:cloudron node /app/code/server.js /app/data/surfer_root /app/data/.surfer.json