Generated project

This commit is contained in:
start.vaadin.com
2026-01-22 14:25:04 +00:00
commit bf050e8cb3
13 changed files with 731 additions and 0 deletions

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
# My Application README
- [ ] TODO Replace or update this README with instructions relevant to your application
To start the application in development mode, import it into your IDE and run the `Application` class.
You can also start the application from the command line by running:
```bash
./mvnw
```
To build the application in production mode, run:
```bash
./mvnw package
```
To build a Docker image, run:
```bash
docker build -t my-application:latest .
```
If you use commercial components, pass the license key as a build secret:
```bash
docker build --secret id=proKey,src=$HOME/.vaadin/proKey .
```
## Getting Started
The [Quick Start](https://vaadin.com/docs/v25/getting-started/quick-start) tutorial helps you get started with Vaadin in
around 10 minutes. This tutorial walks you through building a simple application, introducing the core concepts along
the way.