Merge branch 'main' into feat/configurable-path-exclusion
This commit is contained in:
commit
dfbf3d91f6
3 changed files with 644 additions and 551 deletions
|
|
@ -99,7 +99,9 @@ python cognee/cognee/tests/test_library.py
|
|||
|
||||
## 4. 📤 Submitting Changes
|
||||
|
||||
1. Push your changes:
|
||||
1. Install ruff on your system
|
||||
2. Run ```ruff format .``` and ``` ruff check ``` and fix the issues
|
||||
3. Push your changes:
|
||||
```shell
|
||||
git add .
|
||||
git commit -s -m "Description of your changes"
|
||||
|
|
@ -107,7 +109,7 @@ git push origin feature/your-feature-name
|
|||
```
|
||||
|
||||
2. Create a Pull Request:
|
||||
- Go to the [**cognee** repository](https://github.com/topoteretes/cognee)
|
||||
- Go to the [**cognee** repository](https://github.com/topoteretes/cognee) or [cognee community repository](https://github.com/topoteretes/cognee-community)
|
||||
- Click "Compare & Pull Request" and open a PR against dev branch
|
||||
- Fill in the PR template with details about your changes
|
||||
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ COPY alembic/ /app/alembic
|
|||
# Then, add the rest of the project source code and install it
|
||||
# Installing separately from its dependencies allows optimal layer caching
|
||||
COPY ./cognee /app/cognee
|
||||
COPY ./distributed /app/distributed
|
||||
RUN --mount=type=cache,target=/root/.cache/uv \
|
||||
uv sync --extra debug --extra api --extra postgres --extra qdrant --extra neo4j --extra llama-index --extra gemini --extra ollama --extra mistral --extra groq --extra anthropic --frozen --no-dev --no-editable
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue