Skip to content

Commit 863c47f

Browse files
committed
Add .gitignore file and update Python version to 3.12.4
1 parent b628e03 commit 863c47f

File tree

5 files changed

+1022
-4
lines changed

5 files changed

+1022
-4
lines changed

weaviate_search/.env.example

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
WEAVIATE_URL=
2-
WEAVIATE_API_KEY=
1+
WEAVIATE_URL=<your-weaviate-url>
2+
WEAVIATE_API_KEY=<your-weaviate-api-key>
3+
4+
# Restack Cloud (Optional)
5+
6+
# RESTACK_ENGINE_ID=<your-engine-id>
7+
# RESTACK_ENGINE_API_KEY=<your-engine-api-key>
8+
# RESTACK_ENGINE_ADDRESS=<your-engine-address>
9+
# RESTACK_CLOUD_TOKEN=<your-cloud-token>

weaviate_search/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
__pycache__
2+
.pytest_cache
3+
venv
4+
.env
5+
.vscode

weaviate_search/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The example is a follow along of <https://weaviate.io/developers/weaviate/starte
1818
2. Install dependencies using Poetry:
1919

2020
```bash
21-
poetry env use 3.9
21+
poetry env use 3.12.4
2222
```
2323

2424
```bash

0 commit comments

Comments
 (0)