Skip to content

Commit b9cecb8

Browse files
sync env examples and add voyage dependency to readmes
1 parent 5cda8e2 commit b9cecb8

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

mflix/README-JAVA-SPRING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ This is a full-stack movie browsing application built with Java Spring Boot and
2121
- **MongoDB Atlas cluster or local deployment** with the `sample_mflix` dataset loaded
2222
- [Load sample data](https://www.mongodb.com/docs/atlas/sample-data/)
2323
- **Maven** (included via Maven Wrapper)
24+
- **Voyage AI API key** (For MongoDB Vector Search)
25+
- [Get a Voyage AI API key](https://www.voyageai.com/)
2426

2527
## Getting Started
2628

mflix/README-JAVASCRIPT-EXPRESS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ This is a full-stack movie browsing application built with Express.js and Next.j
2020
- **MongoDB Atlas cluster or local deployment** with the `sample_mflix` dataset loaded
2121
- [Load sample data](https://www.mongodb.com/docs/atlas/sample-data/)
2222
- **npm** (included with Node.js)
23+
- **Voyage AI API key** (For MongoDB Vector Search)
24+
- [Get a Voyage AI API key](https://www.voyageai.com/)
2325

2426
## Getting Started
2527

mflix/server/java-spring/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MongoDB Connection
22
# Replace with your MongoDB Atlas connection string or local MongoDB URI
3-
MONGODB_URI=mongodb+srv://username:password@cluster.mongodb.net/?retryWrites=true&w=majority
3+
MONGODB_URI=mongodb+srv://<username>:<password>@<cluster>.mongodb.net/sample_mflix?retryWrites=true&w=majority
44

55
# Voyage AI Configuration
66
# API key for Voyage AI embedding model (required for Vector Search)

mflix/server/python-fastapi/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MongoDB Connection
22
# Replace with your MongoDB Atlas connection string or local MongoDB URI
3-
MONGO_URI="mongodb://localhost:27017"
3+
MONGO_URI="mongodb+srv://<username>:<password>@<cluster>.mongodb.net/sample_mflix?retryWrites=true&w=majority"
44
MONGO_DB="sample_mflix"
55

66
# Voyage AI Configuration

0 commit comments

Comments
 (0)