Skip to content

Commit c535d4c

Browse files
authored
Merge pull request #4 from adolfo-ab/add-uv
Replace Poetry with uv
2 parents 937c8e8 + 3e8dd73 commit c535d4c

File tree

5 files changed

+911
-1280
lines changed

5 files changed

+911
-1280
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ cython_debug/
159159
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160160
# and can be added to the global gitignore or merged into this file. For a more nuclear
161161
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162-
#.idea/
162+
.idea/
163163
.idea/.gitignore
164164
.idea/misc.xml
165165
.idea/modules.xml

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# New contributor guide
22

3+
## Installation
4+
5+
TrustyAIService uses `uv` as a package manager. To install it, follow the official [installation guide](https://github.com/astral-sh/uv).
6+
7+
First, create a virtual environment:
8+
```bash
9+
uv venv
10+
source .venv/bin/activate
11+
```
12+
13+
Then install the project dependencies into your virtual environment:
14+
```bash
15+
uv pip install -e .
16+
```
17+
318
## pre-commit
419

520
In order to ensure proper and consistent code formatting, we use `pre-commit` in combination with tools like `ruff`, `flake8`, and `mypy`. When committing your code, make sure that all the pre-commit checks pass in your local environment.

0 commit comments

Comments
 (0)