mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-26 16:07:18 +00:00
* add heroku predeploy script * test env injected * test prebuild heroku * fix filename * cancel inprogress pipeline * change file permission * test env replaced * server install on predeploy * frontend build on predeploy * run as postdeploy script
9 lines
202 B
Bash
Executable file
9 lines
202 B
Bash
Executable file
#!/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
|