Allow passing additional flags to the run script

This commit is contained in:
Jeremy Wall 2023-01-08 18:39:26 -05:00
parent ae7aea8c5b
commit 8c5a42dd39

2
run.sh
View File

@ -13,5 +13,5 @@
# limitations under the License. # limitations under the License.
EXAMPLES=${EXAMPLES:-../examples} EXAMPLES=${EXAMPLES:-../examples}
echo Starting api server serving ${EXAMPLES} echo Starting api server serving ${EXAMPLES}
nix run .\#kitchenDebug -- --verbose debug serve --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+2.pem --cert_key ~/tls-certs/localhost+2-key.pem nix run .\#kitchenDebug -- --verbose debug serve --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+2.pem --cert_key ~/tls-certs/localhost+2-key.pem $@
# This is ghetto but I'm doing it anyway # This is ghetto but I'm doing it anyway