{"id":39233768,"url":"https://github.com/perusworld/spring-cloud-starter","last_synced_at":"2026-01-17T23:44:43.939Z","repository":{"id":138159205,"uuid":"132170901","full_name":"perusworld/spring-cloud-starter","owner":"perusworld","description":"Spring Cloud Starter","archived":false,"fork":false,"pushed_at":"2024-08-05T20:20:02.000Z","size":252,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-05T23:39:35.783Z","etag":null,"topics":["backend-services","gateway","mongodb","rabbitmq","registry","rest-api","spring-boot","spring-cloud","startup","webapp"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/perusworld.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-05-04T17:40:00.000Z","updated_at":"2024-08-05T20:20:03.000Z","dependencies_parsed_at":"2024-07-16T06:04:49.003Z","dependency_job_id":null,"html_url":"https://github.com/perusworld/spring-cloud-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/perusworld/spring-cloud-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perusworld%2Fspring-cloud-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perusworld%2Fspring-cloud-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perusworld%2Fspring-cloud-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perusworld%2Fspring-cloud-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/perusworld","download_url":"https://codeload.github.com/perusworld/spring-cloud-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perusworld%2Fspring-cloud-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28522313,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T22:11:28.393Z","status":"ssl_error","status_checked_at":"2026-01-17T22:11:27.841Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["backend-services","gateway","mongodb","rabbitmq","registry","rest-api","spring-boot","spring-cloud","startup","webapp"],"created_at":"2026-01-17T23:44:43.864Z","updated_at":"2026-01-17T23:44:43.933Z","avatar_url":"https://github.com/perusworld.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# spring-cloud-starter\nSpring Cloud Starter\n\n## Development\n\n### Startup Core Services Before Dev\n```bash\nmvn clean package -Dmaven.test.skip=true\ncd docker\ndocker-compose -f core-services-docker-compose.yml build\ndocker-compose -f core-services-docker-compose.yml up -d\ndocker-compose -f service-routing-docker-compose.yml build\ndocker-compose -f service-routing-docker-compose.yml up -d\n```\n### Stop Core Services\n```bash\ncd docker\ndocker-compose -f service-routing-docker-compose.yml stop\ndocker-compose -f core-services-docker-compose.yml stop\n```\n### Test\n```bash\nmvn compile test\n```\n### Startup Backend Services During UI Dev\n```bash\nmvn package\ncd docker\ndocker-compose -f services-docker-compose.yml build\ndocker-compose -f services-docker-compose.yml up -d\n```\n### Stop Backend Services During UI Dev\n```bash\ncd docker\ndocker-compose -f services-docker-compose.yml stop\n```\n### Startup Web\n```bash\nmvn package\ncd docker\ndocker-compose -f web-docker-compose.yml build\ndocker-compose -f web-docker-compose.yml up -d\n```\n### Stop Web\n```bash\ncd docker\ndocker-compose -f web-docker-compose.yml stop\n```\n\n### Dev Instance URLs\n\n| Service | URL | UID/PWD | Health | URL via Gateway |\n| ------------- | ------------- | :-----: | --- | --- |\n| Rabbit MQ | [http://localhost:15672/](http://localhost:15672/) | guest/guest | | |\n| Postgres Admin | [http://localhost:5431](http://localhost:5431) | user@db.com/pwd | | |\n| Mongo Admin | [http://localhost:27016](http://localhost:27016) | | | |\n| Service Registry | [http://localhost:8761](http://localhost:8761) | | | |\n| Service Gateway | [http://localhost:8080](http://localhost:8080) | | [http://localhost:9080/actuator/health](http://localhost:9080/actuator/health) | |\n| Sample REST Service | [http://localhost:8081/](http://localhost:8081/) | | [http://localhost:9081/actuator/health](http://localhost:9081/actuator/health) | [http://localhost:8080/sample-rest-service/](http://localhost:8080/sample-rest-service/) |\n| Sample AMQP Service | | | [http://localhost:9083/actuator/health](http://localhost:9083/actuator/health) | |\n| Sample Spring Web | [http://localhost:8082/](http://localhost:8082/) | | [http://localhost:9082/actuator/health](http://localhost:9082/actuator/health) | [http://localhost:8080/sample-spring-web/](http://localhost:8080/sample-spring-web/) |\n\n\n## Documentation\n[html version](documentation/sample-rest-service/index.html), [pdf version](documentation/sample-rest-service/index.pdf), [postman collection](documentation/sample-rest-service/postman-collection.json), [insomnia collection](documentation/sample-rest-service/insomnia-collection.json), [swagger](documentation/sample-rest-service/swagger.json)\n\n### Generate Documentation\nRequires [wkhtmltopdf](https://wkhtmltopdf.org/index.html), [jq](https://stedolan.github.io/jq/), [restdocs-to-postman](https://github.com/fbenz/restdocs-to-postman), [swaggymnia](https://github.com/mlabouardy/swaggymnia)\n\n```bash\nmvn clean package\ncd  documentation/sample-rest-service\ncp ../../sample-rest-service/target/generated-docs/index.html .\nwkhtmltopdf index.html index.pdf\ncd ../../sample-rest-service/target\nrestdocs-to-postman --input generated-snippets --export-format postman --determine-folder secondLastFolder --replacements ../../documentation/config/replacements.json --output ../../documentation/sample-rest-service/postman-collection.json\nrestdocs-to-postman --input generated-snippets --export-format insomnia --determine-folder secondLastFolder --replacements ../../documentation/config/replacements.json --output ../../documentation/sample-rest-service/insomnia-collection.json\ncd  ../../documentation/sample-rest-service\njq '.info.name=\"Sample REST Service - Postman\"' postman-collection.json \u003e postman-collection.tmp\njq '.item[0].name=\"Sample Requests\"' postman-collection.tmp \u003e postman-collection.json\nrm postman-collection.tmp\njq '.resources[0].name=\"Sample REST Service - Insomnia Sample Requests\"' insomnia-collection.json \u003e insomnia-collection.tmp\nmv insomnia-collection.tmp insomnia-collection.json\nswaggymnia generate -insomnia insomnia-collection.json -config ../config/swaggymnia.json -output json\ncd  ../../\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperusworld%2Fspring-cloud-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperusworld%2Fspring-cloud-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperusworld%2Fspring-cloud-starter/lists"}