Content inside supertokenslib
(The raw file follows this syntax highlighted file.)
#!/bin/bash
set -e
if [[ $# -eq 0 ]] ; then
echo "This script requires that a file with env vars be provided as an argument. E.g.: ./this_script.sh some_vars.env"
exit 1
fi
set -o allexport
source $1
set +o allexport
esbuild index.js --bundle --minify --outfile=index.min.js
go run -C server main.go
#!/bin/bash set -e if [[ $# -eq 0 ]] ; then echo "This script requires that a file with env vars be provided as an argument. E.g.: ./this_script.sh some_vars.env" exit 1 fi set -o allexport source $1 set +o allexport esbuild index.js --bundle --minify --outfile=index.min.js go run -C server main.go