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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ out
/.gradletasknamecache
**/*.flattened-pom.xml

vscode
settings.json

node
node_modules
package-lock.json
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic"
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ To build with only unit tests
```

To build including integration tests.
You will need to set environment variables for API keys to OpenAI
Set API key environment variables for OpenAI and Azure OpenAI before running.

```shell
./mvww clean package -Pintegration-tests
./mvnw clean package -Pintegration-tests
```

To build the docs
Expand Down