{"id":17006505,"url":"https://github.com/frostmarked/bonreplicaservice","last_synced_at":"2026-05-02T06:41:53.794Z","repository":{"id":42253692,"uuid":"280133755","full_name":"frostmarked/bonReplicaService","owner":"frostmarked","description":"Downstream service for limousin.se","archived":false,"fork":false,"pushed_at":"2022-12-11T14:02:52.000Z","size":1232,"stargazers_count":1,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-11T17:11:43.362Z","etag":null,"topics":["docker","jhipster","microservice"],"latest_commit_sha":null,"homepage":"https://limousin.se","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/frostmarked.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}},"created_at":"2020-07-16T11:15:55.000Z","updated_at":"2021-01-23T17:59:47.000Z","dependencies_parsed_at":"2023-01-27T00:45:46.268Z","dependency_job_id":null,"html_url":"https://github.com/frostmarked/bonReplicaService","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frostmarked%2FbonReplicaService","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frostmarked%2FbonReplicaService/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frostmarked%2FbonReplicaService/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frostmarked%2FbonReplicaService/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frostmarked","download_url":"https://codeload.github.com/frostmarked/bonReplicaService/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247386626,"owners_count":20930682,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["docker","jhipster","microservice"],"created_at":"2024-10-14T05:06:01.982Z","updated_at":"2026-05-02T06:41:53.716Z","avatar_url":"https://github.com/frostmarked.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Note\n\nVisit the parent project https://github.com/frostmarked/bonParent for more information\u003cbr\u003e\n\u003cbr/\u003e\n\u003cbr/\u003e\n\u003cbr/\u003e\n\u003cbr/\u003e\n![](https://github.com/frostmarked/bonReplicaService/workflows/Bon%20Replica%20Service%20CI/badge.svg)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=frostmarked_bonReplicaService\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=frostmarked_bonReplicaService)\n\n# bonReplicaService\n\nThis application was generated using JHipster 6.10.5, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v6.10.5](https://www.jhipster.tech/documentation-archive/v6.10.5).\n\nThis is a \"microservice\" application intended to be part of a microservice architecture, please refer to the [Doing microservices with JHipster][] page of the documentation for more information.\n\nThis application is configured for Service Discovery and Configuration with the JHipster-Registry. On launch, it will refuse to start if it is not able to connect to the JHipster-Registry at [http://localhost:8761](http://localhost:8761). For more information, read our documentation on [Service Discovery and Configuration with the JHipster-Registry][].\n\n## Development\n\nTo start your application in the dev profile, run:\n\n```\n./mvnw\n```\n\nFor further instructions on how to develop with JHipster, have a look at [Using JHipster in development][].\n\n## Building for production\n\n### Packaging as jar\n\nTo build the final jar and optimize the bonReplicaService application for production, run:\n\n```\n\n./mvnw -Pprod clean verify\n\n\n```\n\nTo ensure everything worked, run:\n\n```\n\njava -jar target/*.jar\n\n\n```\n\nRefer to [Using JHipster in production][] for more details.\n\n### Packaging as war\n\nTo package your application as a war in order to deploy it to an application server, run:\n\n```\n\n./mvnw -Pprod,war clean verify\n\n\n```\n\n## Testing\n\nTo launch your application's tests, run:\n\n```\n./mvnw verify\n```\n\nFor more information, refer to the [Running tests page][].\n\n### Code quality\n\nSonar is used to analyse code quality. You can start a local Sonar server (accessible on http://localhost:9001) with:\n\n```\ndocker-compose -f src/main/docker/sonar.yml up -d\n```\n\nYou can run a Sonar analysis with using the [sonar-scanner](https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner) or by using the maven plugin.\n\nThen, run a Sonar analysis:\n\n```\n./mvnw -Pprod clean verify sonar:sonar\n```\n\nIf you need to re-run the Sonar phase, please be sure to specify at least the `initialize` phase since Sonar properties are loaded from the sonar-project.properties file.\n\n```\n./mvnw initialize sonar:sonar\n```\n\nFor more information, refer to the [Code quality page][].\n\n## Using Docker to simplify development (optional)\n\nYou can use Docker to improve your JHipster development experience. A number of docker-compose configuration are available in the [src/main/docker](src/main/docker) folder to launch required third party services.\n\nFor example, to start a postgresql database in a docker container, run:\n\n```\ndocker-compose -f src/main/docker/postgresql.yml up -d\n```\n\nTo stop it and remove the container, run:\n\n```\ndocker-compose -f src/main/docker/postgresql.yml down\n```\n\nYou can also fully dockerize your application and all the services that it depends on.\nTo achieve this, first build a docker image of your app by running:\n\n```\n./mvnw -Pprod verify jib:dockerBuild\n```\n\nThen run:\n\n```\ndocker-compose -f src/main/docker/app.yml up -d\n```\n\nFor more information refer to [Using Docker and Docker-Compose][], this page also contains information on the docker-compose sub-generator (`jhipster docker-compose`), which is able to generate docker configurations for one or several JHipster applications.\n\n## Continuous Integration (optional)\n\nTo 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.\n\n[jhipster homepage and latest documentation]: https://www.jhipster.tech\n[jhipster 6.10.5 archive]: https://www.jhipster.tech/documentation-archive/v6.10.5\n[doing microservices with jhipster]: https://www.jhipster.tech/documentation-archive/v6.10.5/microservices-architecture/\n[using jhipster in development]: https://www.jhipster.tech/documentation-archive/v6.10.5/development/\n[service discovery and configuration with the jhipster-registry]: https://www.jhipster.tech/documentation-archive/v6.10.5/microservices-architecture/#jhipster-registry\n[using docker and docker-compose]: https://www.jhipster.tech/documentation-archive/v6.10.5/docker-compose\n[using jhipster in production]: https://www.jhipster.tech/documentation-archive/v6.10.5/production/\n[running tests page]: https://www.jhipster.tech/documentation-archive/v6.10.5/running-tests/\n[code quality page]: https://www.jhipster.tech/documentation-archive/v6.10.5/code-quality/\n[setting up continuous integration]: https://www.jhipster.tech/documentation-archive/v6.10.5/setting-up-ci/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrostmarked%2Fbonreplicaservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrostmarked%2Fbonreplicaservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrostmarked%2Fbonreplicaservice/lists"}