We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d3f9fa commit 884fb52Copy full SHA for 884fb52
.justfile
@@ -14,4 +14,4 @@ set allow-duplicate-recipes
14
15
import "runner/.justfile"
16
17
-# TODO: Add frontend/justfile for managing frontend development tasks
+import "frontend/.justfile"
frontend/.justfile
@@ -0,0 +1,20 @@
1
+# Justfile for building frontend
2
+#
3
+# Run `just` to see all available commands
4
+
5
+default:
6
+ @just --list
7
8
+[private]
9
+install-frontend:
10
+ #!/usr/bin/env bash
11
+ set -e
12
+ cd {{source_directory()}}
13
+ npm install
+build-frontend:
18
19
+ npm run build
20
+ cp -r build/ ../src/dstack/_internal/server/statics/
0 commit comments