aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--justfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/justfile b/justfile
index b07928e..67528c2 100644
--- a/justfile
+++ b/justfile
@@ -23,4 +23,8 @@ setup *args:
just ssh "{{TARGET_DIR}}/setup.sh" "$@"
local-setup *args:
- ROOT_DIR="$PWD" ./setup.sh "$@"
+ mkdir -p ./tmp/uploads
+ ROOT_DIR="$PWD" \
+ GIT_REPOS_ROOT="$HOME/dev/projects" \
+ SEND_UPLOADS_ROOT="$PWD/tmp/uploads" SEND_USER="$(id -u):$(id -g)" \
+ ./setup.sh "$@"