Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ integration-test:
@echo "All integration tests passed."

_test-uv-lock-generated:
@echo "--- test: copier _tasks generated uv.lock"
@echo "--- test: make installdeps generates uv.lock"
@cd $(GENERATED_PROJECT) && make installdeps > /dev/null 2>&1
@test -f $(GENERATED_PROJECT)/uv.lock \
&& echo "OK: uv.lock generated" \
|| (echo "FAIL: uv.lock was not generated by copier _tasks" && exit 1)
|| (echo "FAIL: uv.lock was not generated by make installdeps" && exit 1)

_test-vespa-app-import:
@echo "--- test: vespa_app module imports"
Expand Down
3 changes: 0 additions & 3 deletions copier.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
_min_copier_version: "9.0.0"
_subdirectory: "template"

_tasks:
- "uv sync"

project_name:
type: str
default: "my-search"
Expand Down
2 changes: 1 addition & 1 deletion template/README.md.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SDK namespace: `mistralai.search.toolkit` — see the [toolkit docs](https://git
## Setup

```bash
uv sync
make installdeps
```

Set `MISTRAL_API_KEY` in `.env` (created by copier). Vespa endpoints and `COLLECTION_NAME` are pre-configured.
Expand Down
Loading