mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-28 08:57:17 +00:00
10 lines
202 B
Bash
10 lines
202 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ $HEROKU_APP_NAME ]
|
||
|
|
then
|
||
|
|
TOOLJET_HOST="https://${HEROKU_APP_NAME}.herokuapp.com"
|
||
|
|
TOOLJET_SERVER_URL="https://${HEROKU_APP_NAME}.herokuapp.com"
|
||
|
|
fi
|
||
|
|
|
||
|
|
npm run build && npm run deploy
|