Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 817 Bytes

File metadata and controls

36 lines (23 loc) · 817 Bytes

Development setup

1. Clone the repo:

git clone https://github.com/dstackai/dstack
cd dstack

2. Install uv:

https://docs.astral.sh/uv/getting-started/installation

curl -LsSf https://astral.sh/uv/install.sh | sh

3. Install dstack with all extras and dev dependencies:

uv sync --all-extras

dstack will be installed into the project's .venv in editable mode and can be run with uv run dstack.

Alternatively, if you want to manage virtual environments by yourself, you can install dstack into the activated virtual environment with uv sync --all-extras --active.

4. (Recommended) Install pre-commits:

uv run pre-commit install

5. Frontend

See FRONTEND.md for the details on how to build and develop the frontend.