{"id":48819331,"url":"https://github.com/vaadin/skeleton-starter-flow","last_synced_at":"2026-04-14T14:01:54.596Z","repository":{"id":25759111,"uuid":"96856945","full_name":"vaadin/skeleton-starter-flow","owner":"vaadin","description":"Default project template for Vaadin ","archived":false,"fork":false,"pushed_at":"2026-04-10T10:04:06.000Z","size":25641,"stargazers_count":36,"open_issues_count":7,"forks_count":34,"subscribers_count":32,"default_branch":"v25","last_synced_at":"2026-04-10T10:37:50.280Z","etag":null,"topics":["getting-started","java","project-templates","vaadin","web","webcomponents"],"latest_commit_sha":null,"homepage":"https://vaadin.com/start","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vaadin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-07-11T06:06:48.000Z","updated_at":"2026-03-30T14:10:24.000Z","dependencies_parsed_at":"2023-10-27T06:26:56.144Z","dependency_job_id":"1a3e3101-4d44-4669-b39c-b890ae68c999","html_url":"https://github.com/vaadin/skeleton-starter-flow","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/vaadin/skeleton-starter-flow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fskeleton-starter-flow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fskeleton-starter-flow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fskeleton-starter-flow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fskeleton-starter-flow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vaadin","download_url":"https://codeload.github.com/vaadin/skeleton-starter-flow/tar.gz/refs/heads/v25","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fskeleton-starter-flow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31799411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["getting-started","java","project-templates","vaadin","web","webcomponents"],"created_at":"2026-04-14T14:01:47.231Z","updated_at":"2026-04-14T14:01:54.558Z","avatar_url":"https://github.com/vaadin.png","language":"Java","readme":"# Skeleton Starter for Vaadin\n\nThis project can be used as a starting point to create your own Vaadin application.\nIt has the necessary dependencies and files to help you get started.\n\nThe best way to use it is via [vaadin.com/start](https://vaadin.com/start) - you can get only the necessary parts and choose the package naming you want to use.\nThere is also a [getting started tutorial](https://vaadin.com/tutorials/getting-started-with-flow) based on this project.\n\nTo access it directly from github, clone the repository and import the project to the IDE of your choice as a Maven project. You need to have Java 8 or 11 installed.\n\nRun in development mode using `mvn jetty:run` and open [http://localhost:8080](http://localhost:8080) in the browser. If you are deploying to a test server via IDE integration, you probably need to enable `development` profile to get `vaadin-dev` dependency into the development deployment.\n\nIf you want to run your app locally in the production mode, run `mvn jetty:run-war` or build a war file with `mvn package` and deploy it manually.\n\n### Running Integration Tests\n\nIntegration tests are implemented using [Vaadin TestBench](https://vaadin.com/testbench). The tests take a few minutes to run and are therefore included in a separate Maven profile. To run the tests using Google Chrome, execute\n\n`mvn verify -Pit`\n\nand make sure you have a valid TestBench license installed (you can obtain a \ntrial license from the [trial page](\nhttps://vaadin.com/trial)).\n\n## Project structure\n\nThe project follow Maven's [standard directory layout structure](https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html):\n- Under the `srs/main/java` are located Application sources\n    - `AppShell.java` configures the @PWA annotation making the application \n      installable\n    - `GreetService.java` is a service class\n    - `MainView.java` is an example Vaadin view\n- Under the `srs/test` are located the TestBench test files\n- `src/main/resources` contains configuration files and static resources\n- The `frontend` directory in the root folder contains client-side \n  dependencies and resource files. Example CSS styles used by the application \n  are located under `frontend/themes`\n\n## Workspace.xml file\nIntelliJ IDEA uses `workspace.xml` file to cache user-specific project configuration.\nTracking of local changes to the `workspace.xml` file can be prevented with the `git update-index --assume-unchanged .idea/workspace.xml` command.\nAnd to revert the setting: `git update-index --no-assume-unchanged .idea/workspace.xml`.\n\n## Useful links\n\n- Read the documentation at [vaadin.com/docs](https://vaadin.com/docs).\n- Follow the tutorials at [vaadin.com/tutorials](https://vaadin.com/tutorials).\n- Watch training videos and get certified at [vaadin.com/learn/training]( https://vaadin.com/learn/training).\n- Create new projects at [start.vaadin.com](https://start.vaadin.com/).\n- Search UI components and their usage examples at [vaadin.com/components](https://vaadin.com/components).\n- Find a collection of solutions to common use cases in [Vaadin Cookbook](https://cookbook.vaadin.com/).\n- Find Add-ons at [vaadin.com/directory](https://vaadin.com/directory).\n- Ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/vaadin) or join our [Discord channel](https://discord.gg/MYFq5RTbBn).\n- Report issues, create pull requests in [GitHub](https://github.com/vaadin/).\n\nFor a full Vaadin application example, there are more choices available also from [vaadin.com/start](https://vaadin.com/start) page.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaadin%2Fskeleton-starter-flow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvaadin%2Fskeleton-starter-flow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaadin%2Fskeleton-starter-flow/lists"}