{"id":19542487,"url":"https://github.com/dr-mod/jhipster-books","last_synced_at":"2026-05-11T12:38:31.559Z","repository":{"id":87976481,"uuid":"58393998","full_name":"dr-mod/jhipster-books","owner":"dr-mod","description":"JEEConf \"Get along with JHipster\" presentation demo","archived":false,"fork":false,"pushed_at":"2016-05-10T21:00:47.000Z","size":314,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-26T05:29:43.474Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dr-mod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2016-05-09T17:08:49.000Z","updated_at":"2017-05-22T20:05:01.000Z","dependencies_parsed_at":"2023-05-22T05:15:24.577Z","dependency_job_id":null,"html_url":"https://github.com/dr-mod/jhipster-books","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dr-mod/jhipster-books","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dr-mod%2Fjhipster-books","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dr-mod%2Fjhipster-books/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dr-mod%2Fjhipster-books/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dr-mod%2Fjhipster-books/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dr-mod","download_url":"https://codeload.github.com/dr-mod/jhipster-books/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dr-mod%2Fjhipster-books/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32895075,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-11T03:14:50.372Z","updated_at":"2026-05-11T12:38:31.555Z","avatar_url":"https://github.com/dr-mod.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jhipster\n\nThis application was generated using JHipster, you can find documentation and help at [https://jhipster.github.io](https://jhipster.github.io).\n\n## Development\n\nBefore you can build this project, you must install and configure the following dependencies on your machine:\n\n1. [Node.js][]: We use Node to run a development web server and build the project.\n   Depending on your system, you can install Node either from source or as a pre-packaged bundle.\n\nAfter installing Node, you should be able to run the following command to install development tools (like\n[Bower][] and [BrowserSync][]). You will only need to run this command when dependencies change in package.json.\n\n    npm install\n\nWe use [Gulp][] as our build system. Install the Gulp command-line tool globally with:\n\n    npm install -g gulp\n\nRun the following commands in two separate terminals to create a blissful development experience where your browser\nauto-refreshes when files change on your hard drive.\n\n    ./mvnw\n    gulp\n\nBower is used to manage CSS and JavaScript dependencies used in this application. You can upgrade dependencies by\nspecifying a newer version in `bower.json`. You can also run `bower update` and `bower install` to manage dependencies.\nAdd the `-h` flag on any command to see how you can use it. For example, `bower update -h`.\n\n\n## Building for production\n\nTo optimize the jhipster client for production, run:\n\n    ./mvnw -Pprod clean package\n\nThis will concatenate and minify CSS and JavaScript files. It will also modify `index.html` so it references\nthese new files.\n\nTo ensure everything worked, run:\n\n    java -jar target/*.war --spring.profiles.active=prod\n\nThen navigate to [http://localhost:8080](http://localhost:8080) in your browser.\n\n## Testing\n\nUnit tests are run by [Karma][] and written with [Jasmine][]. They're located in `src/test/javascript/` and can be run with:\n\n    gulp test\n\nUI end-to-end tests are powered by [Protractor][], which is built on top of WebDriverJS. They're located in `src/test/javascript/e2e`\nand can be run by starting Spring Boot in one terminal (`./mvnw spring-boot:run`) and running the tests (`gulp itest`) in a second one.\n\n## Continuous Integration\n\nTo setup this project in Jenkins, use the following configuration:\n\n* Project name: `jhipster`\n* Source Code Management\n    * Git Repository: `git@github.com:xxxx/jhipster.git`\n    * Branches to build: `*/master`\n    * Additional Behaviours: `Wipe out repository \u0026 force clone`\n* Build Triggers\n    * Poll SCM / Schedule: `H/5 * * * *`\n* Build\n    * Invoke Maven / Tasks: `-Pprod clean package`\n    * Execute Shell / Command:\n        ````\n        ./mvnw spring-boot:run \u0026\n        bootPid=$!\n        sleep 30s\n        gulp itest\n        kill $bootPid\n        ````\n* Post-build Actions\n    * Publish JUnit test result report / Test Report XMLs: `build/test-results/*.xml,build/reports/e2e/*.xml`\n\n[JHipster]: https://jhipster.github.io/\n[Node.js]: https://nodejs.org/\n[Bower]: http://bower.io/\n[Gulp]: http://gulpjs.com/\n[BrowserSync]: http://www.browsersync.io/\n[Karma]: http://karma-runner.github.io/\n[Jasmine]: http://jasmine.github.io/2.0/introduction.html\n[Protractor]: https://angular.github.io/protractor/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdr-mod%2Fjhipster-books","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdr-mod%2Fjhipster-books","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdr-mod%2Fjhipster-books/lists"}