{"id":17274486,"url":"https://github.com/idugalic/sdm-spring-cf","last_synced_at":"2026-05-05T21:38:35.837Z","repository":{"id":113631415,"uuid":"150147749","full_name":"idugalic/sdm-spring-cf","owner":"idugalic","description":"Software (Spring) Delivery Machine - Cloud Foundry (CF Dev)","archived":false,"fork":false,"pushed_at":"2018-10-01T22:03:14.000Z","size":194,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-31T15:11:11.896Z","etag":null,"topics":["atomist","cloudfoundry","continuous-delivery","java","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/idugalic.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-09-24T18:16:44.000Z","updated_at":"2018-10-01T22:03:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"a0be3076-1255-4d74-b041-5735534a9ffe","html_url":"https://github.com/idugalic/sdm-spring-cf","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-cf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-cf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-cf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idugalic%2Fsdm-spring-cf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idugalic","download_url":"https://codeload.github.com/idugalic/sdm-spring-cf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245665894,"owners_count":20652681,"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":["atomist","cloudfoundry","continuous-delivery","java","spring-boot"],"created_at":"2024-10-15T08:54:01.859Z","updated_at":"2026-05-05T21:38:30.786Z","avatar_url":"https://github.com/idugalic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Software Delivery Machine (Cloudfoundry) - by Atomist\n\nThe SDM framework enables you to control your delivery process in\ncode.  Think of it as an API for your software delivery.  See this\n[introduction][atomist-doc] for more information on the concept of a\nSoftware Delivery Machine and how to create and develop on an SDM.\n\n[atomist-doc]: https://docs.atomist.com/ (Atomist Documentation)\n\n## Getting Started\n\n### Clone this repo to:\n\n```\n~/atomist/\u003cowner\u003e/sdm-spring-cf\n```\nNote: `\u003cowner\u003e` is your Github owner, e.g: idugalic\n\n### CF Dev\n\n - [Download and install the CF command line client and CF Dev](https://github.com/cloudfoundry-incubator/cfdev)\n\nOnce the installation is complete, start CF Dev:\n```\n$ cf dev start\n```\n\nAfter a couple of minutes (30) you should have system running. \n\nLogin and create two spaces `cf-staging-space` , `cf-production-space` within `cfdev-org` organization:\n\n```\n$ cf login -a https://api.dev.cfdev.sh -o cfdev-org --skip-ssl-validation\n$ cf create-space cf-staging-space\n$ cf create-space cf-production-space\n```\n\n\n### Install the Atomist command-line utility\n\n```\n$ npm install -g @atomist/cli\n```\n\n### Configuration\nThe following configuration should be in your `~/.atomist/client.config.json` in order to successfully connect your SDM to CF Dev:\n```\n   \"sdm\": {\n    \"cloudfoundry\": {\n      \"api\": \"https://api.dev.cfdev.sh\",\n      \"user\": \"admin\",\n      \"password\": \"admin\",\n      \"org\": \"cfdev-org\",\n      \"spaces\": {\n        \"staging\": \"cf-staging-space\",\n        \"production\": \"cf-production-space\"\n      }\n    }\n  }\n\n```\n\n### Start your local SDM\n\nInstall the project dependencies using NPM, compile the TypeScript, and start your SDM in local mode:\n```\n$ cd ~/atomist/\u003cowner\u003e/sdm-spring-cf\n$ atomist start --local\n```\n\n### See messages from SDM events\n\nIn order to see messages from events (not interspersed with logs), activate a message listener in another terminal:\n```\natomist feed\n```\n\n### Adding Projects\n\nFurther projects can be added under the expanded directory tree in two ways:\n\n#### Configure Existing Projects\n\nIf you already have repositories cloned/copied under your `~/atomist/\u003cowner\u003e/`, configure them to activate the local SDM on commit.\n\nAdd the Atomist git hook to the existing git projects within this directory structure by running the following command/s:\n```\n$ cd ~/atomist/\u003cowner\u003e/\u003crepo\u003e\n$ atomist add git hooks\n```\n#### 'atomist clone' Command\n\nThe easiest way to add an existing project to your SDM projects is: run the atomist clone command to clone a GitHub.com repository in the right place in the expanded tree and automatically install the git hooks:\n\n`atomist clone https://github.com/\u003cowner\u003e/\u003crepo\u003e`\n\n#### Create new Spring Boot project\n\nYou can create new spring boot projects from [seed project](https://github.com/atomist-seeds/spring-rest) with atomist command:\n\n```\n$ atomist create spring\n```\n\nThis command will create a Spring Boot project and commit it into a local Git repository at `~/atomist/\u003cowner\u003e/\u003crepository\u003e`. The SDM will react to commits on this repository, scheduling goals such as Maven build and test.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidugalic%2Fsdm-spring-cf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidugalic%2Fsdm-spring-cf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidugalic%2Fsdm-spring-cf/lists"}