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 examples/verdure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This directory contains a sample application demonstrating a Flutter client inte
- [UV](https://docs.astral.sh/uv/)
- A Gemini API Key
- You can create one using [AI Studio](https://ai.google.dev/aistudio).
- An iOS or Android simulator or real device to run on.

## Running the Example

Expand All @@ -19,7 +20,7 @@ To run this example, you need to start both the server and the client applicatio
a. Navigate to the server directory:

```bash
cd server
cd server/verdure
```

b. Create a `.env` file with your Gemini API key:
Expand All @@ -32,7 +33,7 @@ b. Create a `.env` file with your Gemini API key:
c. Install dependencies and run the server using UV:

```bash
uv run verdure
uv run .
```

The server will start on `http://localhost:10002` by default.
Expand Down
5 changes: 1 addition & 4 deletions examples/verdure/server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ description = "A top-level project to manage the Verdure server example."
dependencies = []

[tool.uv.workspace]
members = [
"a2ui_extension",
"verdure"
]
members = ["a2ui_extension", "verdure"]

[tool.uv.sources]
a2ui-ext = { path = "a2ui_extension", editable = true }
2 changes: 1 addition & 1 deletion examples/verdure/server/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions examples/verdure/server/verdure/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Verdure Landscape Design Example

See running instructions at [examples/verdure/README.md](examples/verdure/README.md).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The relative link to the main README.md is incorrect. From the current directory (examples/verdure/server/verdure/), the path should be ../../README.md to correctly point to examples/verdure/README.md.

Suggested change
See running instructions at [examples/verdure/README.md](examples/verdure/README.md).
See running instructions at [examples/verdure/README.md](../../README.md).

2 changes: 1 addition & 1 deletion examples/verdure/server/verdure/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.uv.sources]
a2ui_ext = { workspace = true }
a2ui_ext = { workspace = true }