Attempt at dynamic env vars, thanx TheBestMoshe
Some checks failed
continuous-integration/drone/push Build is failing

b5b0eb5a97
This commit is contained in:
3wc
2022-01-05 11:24:41 +02:00
parent 5a9fed9318
commit e1eb849679
2 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,12 @@
#!/bin/sh
set -x
# Set environment variables
echo BASE_URL $BASE_URL
echo NEXT_PUBLIC_APP_URL "$NEXT_PUBLIC_APP_URL"
find \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_NEXT_PUBLIC_APP_URL_VAR#$NEXT_PUBLIC_APP_URL#g"
find \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_BASE_URL_VAR#$BASE_URL#g"
/app/scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "database is up"
npx prisma migrate deploy
yarn start