Add your_program.sh

This commit is contained in:
kodemaster-admin 2025-11-25 20:08:02 +00:00
parent 2ff0657715
commit 965ceffd7f

17
your_program.sh Normal file
View File

@ -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 "$@"