Skip to content

Commit

Permalink
Initial application generated by JHipster-6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgrimaud committed Aug 1, 2019
1 parent 046e39b commit 5b33951
Show file tree
Hide file tree
Showing 62 changed files with 148 additions and 17,717 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ local.properties
# PDT-specific
.buildpath

# STS-specific
/.sts4-cache/*
######################
# Intellij
######################
Expand Down
5 changes: 3 additions & 2 deletions .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"en"
],
"serverPort": 8080,
"jhipsterVersion": "6.1.2",
"jhipsterVersion": "6.2.0",
"enableSocialSignIn": false,
"useSass": true,
"jhiPrefix": "jhi",
Expand All @@ -38,6 +38,7 @@
"otherModules": [],
"entitySuffix": "",
"dtoSuffix": "DTO",
"clientTheme": "none"
"clientTheme": "none",
"blueprints": []
}
}
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jhipsterSampleApplication

This application was generated using JHipster 6.1.2, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v6.1.2](https://www.jhipster.tech/documentation-archive/v6.1.2).
This application was generated using JHipster 6.2.0, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v6.2.0](https://www.jhipster.tech/documentation-archive/v6.2.0).

## Development

Expand Down Expand Up @@ -28,11 +28,11 @@ Add the `help` flag on any command to see how you can use it. For example, `npm

The `npm run` command will list all of the scripts available to run for this project.

### Service workers
### PWA Support

Service workers are commented by default, to enable them please uncomment the following code.
JHipster ships with PWA (Progressive Web App) support, and it's disabled by default. One of the main components of a PWA is a service worker.

- The service worker registering script in index.html
The service worker initialization code is commented out by default. To enable it, uncomment the following code in `src/main/webapp/index.html`:

```html
<script>
Expand All @@ -44,7 +44,7 @@ Service workers are commented by default, to enable them please uncomment the fo
</script>
```

Note: workbox creates the respective service worker and dynamically generate the `service-worker.js`
Note: [Workbox](https://developers.google.com/web/tools/workbox/) powers JHipster's service worker. It dynamically generates the `service-worker.js` file.

### Managing dependencies

Expand All @@ -69,11 +69,11 @@ Edit [src/main/webapp/content/css/vendor.css](src/main/webapp/content/css/vendor
@import '~leaflet/dist/leaflet.css';
```

Note: there are still few other things remaining to do for Leaflet that we won't detail here.
Note: There are still a few other things remaining to do for Leaflet that we won't detail here.

For further instructions on how to develop with JHipster, have a look at [Using JHipster in development][].

### Using angular-cli
### Using Angular CLI

You can also use [Angular CLI][] to generate some custom client code.

Expand Down Expand Up @@ -178,13 +178,13 @@ For more information refer to [Using Docker and Docker-Compose][], this page als
To configure CI for your project, run the ci-cd sub-generator (`jhipster ci-cd`), this will let you generate configuration files for a number of Continuous Integration systems. Consult the [Setting up Continuous Integration][] page for more information.

[jhipster homepage and latest documentation]: https://www.jhipster.tech
[jhipster 6.1.2 archive]: https://www.jhipster.tech/documentation-archive/v6.1.2
[using jhipster in development]: https://www.jhipster.tech/documentation-archive/v6.1.2/development/
[using docker and docker-compose]: https://www.jhipster.tech/documentation-archive/v6.1.2/docker-compose
[using jhipster in production]: https://www.jhipster.tech/documentation-archive/v6.1.2/production/
[running tests page]: https://www.jhipster.tech/documentation-archive/v6.1.2/running-tests/
[code quality page]: https://www.jhipster.tech/documentation-archive/v6.1.2/code-quality/
[setting up continuous integration]: https://www.jhipster.tech/documentation-archive/v6.1.2/setting-up-ci/
[jhipster 6.2.0 archive]: https://www.jhipster.tech/documentation-archive/v6.2.0
[using jhipster in development]: https://www.jhipster.tech/documentation-archive/v6.2.0/development/
[using docker and docker-compose]: https://www.jhipster.tech/documentation-archive/v6.2.0/docker-compose
[using jhipster in production]: https://www.jhipster.tech/documentation-archive/v6.2.0/production/
[running tests page]: https://www.jhipster.tech/documentation-archive/v6.2.0/running-tests/
[code quality page]: https://www.jhipster.tech/documentation-archive/v6.2.0/code-quality/
[setting up continuous integration]: https://www.jhipster.tech/documentation-archive/v6.2.0/setting-up-ci/
[node.js]: https://nodejs.org/
[yarn]: https://yarnpkg.org/
[webpack]: https://webpack.github.io/
Expand Down
Loading

0 comments on commit 5b33951

Please sign in to comment.