Co-authored-by: Ivan Akulov <mail@iamakulov.com> Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Ivan Akulov <iamakulov@outlook.com> Co-authored-by: Aishwarya UR <aishwarya@appsmith.com> Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com> Co-authored-by: somangshu <somangshu.goswami1508@gmail.com>
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
cd "$(dirname "$0")"
|
|
./build.sh
|
|
|
|
set -o allexport
|
|
source .env
|
|
exec node --require source-map-support/register dist/rts/server.js
|