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
14 changes: 14 additions & 0 deletions data/users/morgan-platinum.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

Notes about Morgan Platinum:

- He lives in San Francisco
- He is a software engineer at a tech company
- He doesn't rise early
- He prefers redeyes for flights to the East Coast
- He dislikes transiting in Chicago O'Hare
- He's happy to drive from a more distant airport at his destination
- He's a frequent traveler
- He prefers to fly business class, unless the cost is prohibitive
- He prefers aisle seats
- He is allergic to peanuts
- He is celiac and cannot eat gluten
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<java.version>21</java.version>
<embabel-agent.version>0.3.5-SNAPSHOT</embabel-agent.version>
<embabel-rag-pgvector.version>0.1.0-SNAPSHOT</embabel-rag-pgvector.version>
<dice.version>0.1.0-SNAPSHOT</dice.version>
<vaadin.version>24.6.4</vaadin.version>
</properties>

Expand Down Expand Up @@ -56,6 +57,19 @@
<version>${embabel-rag-pgvector.version}</version>
</dependency>

<dependency>
<groupId>com.embabel.dice</groupId>
<artifactId>dice</artifactId>
<version>${dice.version}</version>
</dependency>

<!-- Shared Vaadin Components -->
<dependency>
<groupId>com.embabel</groupId>
<artifactId>vaadin-components</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

<!-- Web and Vaadin -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
32 changes: 32 additions & 0 deletions src/main/bundles/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
This directory is automatically generated by Vaadin and contains the pre-compiled
frontend files/resources for your project (frontend development bundle).

It should be added to Version Control System and committed, so that other developers
do not have to compile it again.

Frontend development bundle is automatically updated when needed:
- an npm/pnpm package is added with @NpmPackage or directly into package.json
- CSS, JavaScript or TypeScript files are added with @CssImport, @JsModule or @JavaScript
- Vaadin add-on with front-end customizations is added
- Custom theme imports/assets added into 'theme.json' file
- Exported web component is added.

If your project development needs a hot deployment of the frontend changes,
you can switch Flow to use Vite development server (default in Vaadin 23.3 and earlier versions):
- set `vaadin.frontend.hotdeploy=true` in `application.properties`
- configure `vaadin-maven-plugin`:
```
<configuration>
<frontendHotdeploy>true</frontendHotdeploy>
</configuration>
```
- configure `jetty-maven-plugin`:
```
<configuration>
<systemProperties>
<vaadin.frontend.hotdeploy>true</vaadin.frontend.hotdeploy>
</systemProperties>
</configuration>
```

Read more [about Vaadin development mode](https://vaadin.com/docs/next/flow/configuration/development-mode#precompiled-bundle).
Binary file added src/main/bundles/dev.bundle
Binary file not shown.
Loading
Loading