{"id":39076034,"url":"https://github.com/cloud-gov/deploy-stratos","last_synced_at":"2026-01-17T18:26:43.983Z","repository":{"id":38295817,"uuid":"140599061","full_name":"cloud-gov/deploy-stratos","owner":"cloud-gov","description":"Deployment pipeline for Stratos","archived":false,"fork":false,"pushed_at":"2026-01-13T20:40:02.000Z","size":162,"stargazers_count":2,"open_issues_count":3,"forks_count":4,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-01-13T22:22:05.126Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloud-gov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-07-11T16:02:48.000Z","updated_at":"2026-01-13T20:40:05.000Z","dependencies_parsed_at":"2022-09-08T07:33:03.961Z","dependency_job_id":"a85e05e6-5dd2-441e-8d36-9f147bf6e33e","html_url":"https://github.com/cloud-gov/deploy-stratos","commit_stats":null,"previous_names":["cloud-gov/deploy-stratos"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloud-gov/deploy-stratos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-gov%2Fdeploy-stratos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-gov%2Fdeploy-stratos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-gov%2Fdeploy-stratos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-gov%2Fdeploy-stratos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloud-gov","download_url":"https://codeload.github.com/cloud-gov/deploy-stratos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloud-gov%2Fdeploy-stratos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28515473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T17:57:59.192Z","status":"ssl_error","status_checked_at":"2026-01-17T17:57:52.527Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-01-17T18:26:43.913Z","updated_at":"2026-01-17T18:26:43.970Z","avatar_url":"https://github.com/cloud-gov.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cg-deploy-stratos \n\nThis is part of [cloud.gov](https://cloud.gov/), deployment pipeline for\n[Stratos Console](https://github.com/cloudfoundry/stratos).\n\n## Customizing the frontend\n\n### Get dependencies\n\n- Install [NodeJs](https://nodejs.org)\n- Install [Angular CLI](https://cli.angular.io/)\n  ```\n  npm install -g @angular/cli\n  ```\n- Clone this repository\n  ```\n  git clone https://github.com/18F/cg-deploy-stratos.git\n  ```\n- Clone the upstream [Stratos\n  project](https://github.com/cloudfoundry/stratos)\n  ```\n  git clone https://github.com/cloudfoundry/stratos.git\n  ```\n- Change your working directory to the upstream repository directory\n  ```\n  cd stratos\n  ```\n- Link the `custom-src` directory from this repository into the upstream\n  repository directory\n  ```\n  ln -sf ../cg-deploy-stratos/custom-src .\n  ```\n\n### Deploy the backend to your cloud.gov sandbox\n\n- Pre-build the assets to run on cloud.gov\n  ```\n  npm install\n  npm run customize\n  npm run prebuild-ui\n  ```\n- Decide on a URL for the backend that we'll deploy in our sandbox,\ne.g., `stratos-{myinitials}.app.cloud.gov`.\n- Push the app to your cloud.gov sandbox\n  ```\n  cf target -o sandbox-{org} -s {my.email@address.gov}\n  cf push stratos -m 1G -n stratos-{myinitials} -d app.cloud.gov\n  ```\n\n### Create a service instance user so you can login\n\n- Create a service instance of the `cloud-gov-service-account` service, called\n  `stratos-account`, using the `space-auditor` plan/role\n  ```\n  cf create-service cloud-gov-service-account space-auditor stratos-account\n  ```\n- Create a service key tied to that instance\n  ```\n  cf create-service-key stratos-account stratos-account-creds\n  ```\n- Get a copy of the credentials so you can login later\n  ```\n  cf service-key stratos-account stratos-account-creds\n  ```\n\n### Modify frontend configuration\n\n- Copy the template for proxy configuration\n  ```\n  cp proxy.conf.template.js proxy.conf.js\n  ```\n- Now edit `proxy.conf.js` and change the `host` to the chosen hostname you\n  used to deploy the backend. e.g. `stratos-{myinitials}.app.cloud.gov`.\n\n### Run the frontend\n\n- Run `npm start` for a dev server. (the app will automatically reload if\n  you change any of the source files)\n- Navigate to `https://localhost:4200/`\n- Login with the credentials you setup earlier\n\n### Customize\n\n- Follow the customization docs for Stratos, making changes in `custom-src`\n  directory\n- Once your changes are done, switch over to the directory for this\n  repository, and commit your changes to GitHub\n\n## Contributing\n\nSee [CONTRIBUTING](CONTRIBUTING.md) for additional information.\n\n## Public domain\n\nThis project is in the worldwide [public domain](LICENSE.md). As stated in\n[CONTRIBUTING](CONTRIBUTING.md):\n\n\u003e This project is in the public domain within the United States, and\n\u003e copyright and related rights in the work worldwide are waived through the\n\u003e [CC0 1.0 Universal public domain\n\u003e dedication](https://creativecommons.org/publicdomain/zero/1.0/).\n\u003e\n\u003e All contributions to this project will be released under the CC0\n\u003e dedication. By submitting a pull request, you are agreeing to comply with\n\u003e this waiver of copyright interest.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloud-gov%2Fdeploy-stratos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloud-gov%2Fdeploy-stratos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloud-gov%2Fdeploy-stratos/lists"}