Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions frontend/.justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ install-frontend:
cd {{source_directory()}}
npm install

run-frontend:
#!/usr/bin/env bash
set -e
cd {{source_directory()}}
npm run start

run-frontend-sky:
#!/usr/bin/env bash
set -e
cd {{source_directory()}}
npm run start-sky

build-frontend:
#!/usr/bin/env bash
set -e
Expand Down
4 changes: 2 additions & 2 deletions runner/.justfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ default:
@just --list

# Version of the runner and shim to upload
export version := env_var("DSTACK_SHIM_UPLOAD_VERSION")
export version := env("DSTACK_SHIM_UPLOAD_VERSION", "0.0.0")

# S3 bucket to upload binaries to
export s3_bucket := env_var("DSTACK_SHIM_UPLOAD_S3_BUCKET")
export s3_bucket := env("DSTACK_SHIM_UPLOAD_S3_BUCKET", "dstack-runner-downloads-stgn")

# Download URLs
export runner_download_url := "s3://" + s3_bucket + "/" + version + "/binaries/dstack-runner-linux-amd64"
Expand Down