about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--justfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/justfile b/justfile
index ab91b96..3ab2744 100644
--- a/justfile
+++ b/justfile
@@ -6,6 +6,9 @@ prod_db := "/var/awake/database.sqlite"
 get-db:
 	rsync -aP {{prod}}:{{prod_db}} .
 
+graph: get-db
+	cargo run --release -- graph dev.conf
+
 deploy:
 	cargo build --release --target x86_64-unknown-linux-gnu
 	rsync -aP target/x86_64-unknown-linux-gnu/release/awake {{prod}}:{{prod_bin}}
\ No newline at end of file