Add your_program.sh
This commit is contained in:
parent
2ff0657715
commit
965ceffd7f
17
your_program.sh
Normal file
17
your_program.sh
Normal 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 "$@"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user