File tree Expand file tree Collapse file tree 5 files changed +599
-800
lines changed Expand file tree Collapse file tree 5 files changed +599
-800
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
name : Deploy docs
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - name : ' Checkout sources'
13
+ - name : Checkout sources
14
14
uses : actions/checkout@v4
15
15
16
- - name : ' Deploy docs'
16
+ - name : Deploy docs
17
17
uses : mhausenblas/mkdocs-deploy-gh-pages@master
18
18
env :
19
19
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
# Development
2
2
3
- After installing dependencies with ` poetry install ` , CodeLimit can be run from
4
- the repository root like this:
3
+ After installing dependencies with ` uv sync ` , CodeLimit can be run from the
4
+ repository root like this:
5
5
6
6
``` shell
7
- poetry run codelimit
7
+ uv run codelimit
8
8
```
9
9
10
10
For example, to check a codebase at ` ~/projects/fastapi ` run:
11
11
12
12
``` shell
13
- poetry run codelimit scan ~ /projects/fastapi
13
+ uv run codelimit scan ~ /projects/fastapi
14
14
```
15
15
16
16
## Local installation using pipx
@@ -38,21 +38,21 @@ pip install git+https://github.com/getcodelimit/codelimit.git@issue-123
38
38
Generate a self-contained binary:
39
39
40
40
``` shell
41
- poetry run poe bundle
41
+ uv run poe bundle
42
42
```
43
43
44
44
## Static documentation
45
45
46
46
Generating the static documentation:
47
47
48
48
``` shell
49
- poetry run mkdocs build
49
+ uv run mkdocs build
50
50
```
51
51
52
52
See the output:
53
53
54
54
``` shell
55
- poetry run mkdocs serve
55
+ uv run mkdocs serve
56
56
```
57
57
58
58
Terminal sessions in the documentation are recorded with the [ Asciinema
You can’t perform that action at this time.
0 commit comments