You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
409 B
46 lines
409 B
# Development Guide
|
|
|
|
## Prerequisites
|
|
|
|
Install Python (version 3.10 to 3.12).
|
|
|
|
## Set Up Environment
|
|
|
|
```bash
|
|
make install
|
|
```
|
|
|
|
## Run
|
|
|
|
```bash
|
|
poetry run gpustack
|
|
```
|
|
|
|
## Build
|
|
|
|
```bash
|
|
make build
|
|
```
|
|
|
|
And check artifacts in `dist`.
|
|
|
|
## Test
|
|
|
|
```bash
|
|
make test
|
|
```
|
|
|
|
## Update Dependencies
|
|
|
|
```bash
|
|
poetry add <something>
|
|
```
|
|
|
|
Or
|
|
|
|
```bash
|
|
poetry add --group dev <something>
|
|
```
|
|
|
|
For dev/testing dependencies.
|