aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2026-07-03 22:37:54 +0530
committerAkshay Nair <phenax5@gmail.com>2026-07-03 22:37:57 +0530
commit1f4c276914a7e5b03a31345d7bf5966e8aff9081 (patch)
tree3babed15427186fce6cb51e7d52c314d65159b0d /justfile
parent317a8a38f4206279a9aea4c7a92ff44f9b78259a (diff)
downloadbacchus-remote-1f4c276914a7e5b03a31345d7bf5966e8aff9081.tar.gz
bacchus-remote-1f4c276914a7e5b03a31345d7bf5966e8aff9081.zip
Split services to core/rest + instructions
Diffstat (limited to 'justfile')
-rw-r--r--justfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/justfile b/justfile
index 6554cae..b07928e 100644
--- a/justfile
+++ b/justfile
@@ -17,8 +17,10 @@ df:
upload:
just copy . "${SSH_USER}@${SSH_HOST}:{{TARGET_DIR}}"
-start-remote:
- just ssh "{{TARGET_DIR}}/setup.sh" start
+restart-remote: (setup "start")
setup *args:
just ssh "{{TARGET_DIR}}/setup.sh" "$@"
+
+local-setup *args:
+ ROOT_DIR="$PWD" ./setup.sh "$@"