diff options
| -rw-r--r-- | .envrc | 4 | ||||
| -rwxr-xr-x | tools/run | 7 |
2 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,4 @@ +PATH_add tools +PATH_add target/debug + +source_env_if_exists .envrc.local diff --git a/tools/run b/tools/run new file mode 100755 index 0000000..b063eb7 --- /dev/null +++ b/tools/run @@ -0,0 +1,7 @@ +#!/bin/bash -e + +## tools/run [ARGS...] +## +## Run the server in development mode. Shorthand for `cargo run`. + +cargo run -- "$@" |
