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:
1010 name : Deploy docs
1111 runs-on : ubuntu-latest
1212 steps :
13- - name : ' Checkout sources'
13+ - name : Checkout sources
1414 uses : actions/checkout@v4
1515
16- - name : ' Deploy docs'
16+ - name : Deploy docs
1717 uses : mhausenblas/mkdocs-deploy-gh-pages@master
1818 env :
1919 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11# Development
22
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:
55
66``` shell
7- poetry run codelimit
7+ uv run codelimit
88```
99
1010For example, to check a codebase at ` ~/projects/fastapi ` run:
1111
1212``` shell
13- poetry run codelimit scan ~ /projects/fastapi
13+ uv run codelimit scan ~ /projects/fastapi
1414```
1515
1616## Local installation using pipx
@@ -38,21 +38,21 @@ pip install git+https://github.com/getcodelimit/codelimit.git@issue-123
3838Generate a self-contained binary:
3939
4040``` shell
41- poetry run poe bundle
41+ uv run poe bundle
4242```
4343
4444## Static documentation
4545
4646Generating the static documentation:
4747
4848``` shell
49- poetry run mkdocs build
49+ uv run mkdocs build
5050```
5151
5252See the output:
5353
5454``` shell
55- poetry run mkdocs serve
55+ uv run mkdocs serve
5656```
5757
5858Terminal sessions in the documentation are recorded with the [ Asciinema
You can’t perform that action at this time.
0 commit comments