{"id":22014021,"url":"https://github.com/pmuellr/cf-node-hello-git","last_synced_at":"2026-04-18T11:32:31.802Z","repository":{"id":14031128,"uuid":"16733341","full_name":"pmuellr/cf-node-hello-git","owner":"pmuellr","description":"a cf app that stages the app from github","archived":false,"fork":false,"pushed_at":"2014-02-11T14:41:16.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-31T09:41:05.900Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/pmuellr.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":"2014-02-11T14:32:02.000Z","updated_at":"2014-02-11T14:41:16.000Z","dependencies_parsed_at":"2022-09-23T18:02:31.831Z","dependency_job_id":null,"html_url":"https://github.com/pmuellr/cf-node-hello-git","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pmuellr/cf-node-hello-git","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmuellr%2Fcf-node-hello-git","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmuellr%2Fcf-node-hello-git/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmuellr%2Fcf-node-hello-git/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmuellr%2Fcf-node-hello-git/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pmuellr","download_url":"https://codeload.github.com/pmuellr/cf-node-hello-git/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pmuellr%2Fcf-node-hello-git/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31966969,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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-30T03:25:56.250Z","updated_at":"2026-04-18T11:32:31.775Z","avatar_url":"https://github.com/pmuellr.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"cf-node-hello-git\n================================================================================\n\nAn example of pushing a git repo of a node.js app to CloudFoundry, using\n[Jame's Bayer's scm-buildpack](https://groups.google.com/a/cloudfoundry.org/d/msg/vcap-dev/9eC_wNg2DPc/FcYDlrkeH7UJ).\n\n\nusage\n================================================================================\n\nrun:\n\n    git clone https://github.com/pmuellr/cf-node-hello-git\n    cd cf-node-hello-git\n    \u003cedit manifest.yml, change application `name` value\u003e\n    cf push\n\nand behold your new hello world server is running!\n\n\n\nreferences\n================================================================================\n\n* \u003chttps://github.com/pmuellr/cf-node-hello.git\u003e :\n  git repo containing the app we want to push\n\n* \u003chttps://github.com/ddollar/heroku-buildpack-multi.git\u003e :\n  git repo containing the multi-buildpack buildpack\n\n* \u003chttps://github.com/jbayer/scm-buildpack.git\u003e :\n  git repo containing the git buildpack\n\n* \u003chttps://github.com/cloudfoundry/heroku-buildpack-nodejs.git\u003e :\n  git repo containing the node buildpack\n\n\n\nfiles\n================================================================================\n\n\n\n`.buildpacks`\n--------------------------------------------------------------------------------\n\nContains two entries,\n\n    https://github.com/jbayer/scm-buildpack.git\n    https://github.com/cloudfoundry/heroku-buildpack-nodejs.git\n\nThe first is Jame's Bayer's awesome\n[scm-buildpack](https://github.com/jbayer/scm-buildpack)\nwhich does all the git cloning work on the staging server.\n\nThe second is the actual buildpack we want to use with our the app we want\npushed to CloudFoundry; it's a node app, so we're using the default node\nbuildpack.\n\n\n\n`.scmbuildpack`\n--------------------------------------------------------------------------------\n\nThis is a just a marker file, it can be empty.  The `scm-buildpack` buildpack\nchecks for this file's existance before continuing.\n\n\n\n`manifest.yml`\n--------------------------------------------------------------------------------\n\nThis is the manifest for your application.\n\n    applications:\n    - name: cf-node-hello-blortz\n      memory: 128M\n      buildpack: https://github.com/ddollar/heroku-buildpack-multi.git\n      path: .\n      env:\n         SCM_URL: https://github.com/pmuellr/cf-node-hello.git\n\nSome notes:\n\n* `name` is the application name that's pushed.  **CHANGE IT!!**\n\n* `buildpack` points to a special buildpack that runs multiple buildpacks; in\n  this case, the buildpacks specified in the `.buildpacks` file.\n\n* `SCM_URL` should be set to the git repo you want to pull from; this is the git\n  repo of the actual app\n\n* The \"start command\" for this app is specified in the\n  [`Procfile`](https://github.com/pmuellr/cf-node-hello/blob/master/Procfile)\n  of the app itself.\n\n\n\n`README.md`\n--------------------------------------------------------------------------------\n\nThis file!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpmuellr%2Fcf-node-hello-git","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpmuellr%2Fcf-node-hello-git","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpmuellr%2Fcf-node-hello-git/lists"}