177bbaa8c0
@ibraheemdev is going to do some work on these, I just sketched out some parts to try to understand how things will fit together.
33 lines
390 B
Markdown
33 lines
390 B
Markdown
# Working on projects
|
|
|
|
## Creating a new project
|
|
|
|
```
|
|
uv init
|
|
```
|
|
|
|
### Working on an existing project
|
|
|
|
<!-- What makes a project compatible with uv commands? What are my alternatives? -->
|
|
|
|
|
|
## Running commands
|
|
|
|
```
|
|
uv run
|
|
```
|
|
|
|
## Managing dependencies
|
|
|
|
```
|
|
uv add
|
|
```
|
|
|
|
```
|
|
uv remove
|
|
```
|
|
|
|
## Next steps
|
|
|
|
See the [projects concept](../projects.md) documentation for more details on projects.
|