diff --git a/your_program.sh b/your_program.sh new file mode 100644 index 0000000..3d0036d --- /dev/null +++ b/your_program.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Use this script to run your program LOCALLY. +# +# Note: Changing this script WILL NOT affect how Vizh.ai runs your program. +# +# Learn more: https://docs.vizh.ai/program-interface + +set -e # Exit early if any commands fail + +# Copied from .vizh/run.sh +# +# - Edit this to change how your program runs locally +# - Edit .vizh/run.sh to change how your program runs remotely + +exec npx ts-node $(dirname $0)/src/index.ts "$@" +