Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcushellberg/ccdm-test
https://github.com/marcushellberg/ccdm-test
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcushellberg/ccdm-test
- Owner: marcushellberg
- License: unlicense
- Created: 2019-11-15T16:09:40.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T11:49:17.000Z (almost 2 years ago)
- Last Synced: 2024-10-05T08:22:13.301Z (about 1 month ago)
- Language: Java
- Size: 2.15 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Custom project from start.vaadin.com
This project was created from https://start.vaadin.com. It's a fully working Vaadin application that you continue developing locally.
It has all the necessary dependencies and files to help you get going.The project is a standard Maven project, so you can import it to your IDE of choice. You'll need to have Java 8+ and Node.js 10+ installed.
To run from the command line, use `mvn spring-boot:run` and open [http://localhost:8080](http://localhost:8080) in your browser.
## Project structure
| Directory | Description |
| :--- | :--- |
| `frontend/` | Client-side source directory |
| `index.html` | HTML template |
| `index.ts` | Frontend entrypoint, contains the client-side routing setup using [Vaadin Router](https://vaadin.com/router) |
| `main-layout.ts` | Main layout Web Component, contains the navigation menu, uses [App Layout](https://vaadin.com/components/vaadin-app-layout) |
| `views/` | UI views Web Components (TypeScript) |
| `styles/` | Styles directory (CSS) |
| `src/main/java//` | Server-side source directory, contains the server-side Java views |
| `Application.java` | Server entrypoint |## What next?
[vaadin.com](https://vaadin.com) has lots of material to help you get you started:
- Read the [Quick Start Guide](https://vaadin.com/docs/v15/flow/ccdm/quick-start-guide.html) to learn the first steps of full stack Vaadin applications development.
- Follow the tutorials in [vaadin.com/tutorials](https://vaadin.com/tutorials). Especially [vaadin.com/tutorials/getting-started-with-flow](https://vaadin.com/tutorials/getting-started-with-flow) is good for getting a grasp of the basic Vaadin concepts.
- Read the documentation in [vaadin.com/docs](https://vaadin.com/docs).
- For a bigger Vaadin application example, check out the Full Stack App starter from [vaadin.com/start](https://vaadin.com/start).