{"id":31904407,"url":"https://github.com/cloudfoundry-community/cf-meteor-buildpack","last_synced_at":"2025-10-13T13:49:39.504Z","repository":{"id":23737621,"uuid":"27111262","full_name":"cloudfoundry-community/cf-meteor-buildpack","owner":"cloudfoundry-community","description":"Cloud Foundry Meteor Buildpack","archived":false,"fork":false,"pushed_at":"2017-01-09T19:55:50.000Z","size":206,"stargazers_count":22,"open_issues_count":9,"forks_count":69,"subscribers_count":17,"default_branch":"master","last_synced_at":"2024-04-14T22:47:38.932Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/cloudfoundry-community.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}},"created_at":"2014-11-25T05:49:18.000Z","updated_at":"2024-04-14T22:47:38.933Z","dependencies_parsed_at":"2022-08-22T03:50:39.650Z","dependency_job_id":null,"html_url":"https://github.com/cloudfoundry-community/cf-meteor-buildpack","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloudfoundry-community/cf-meteor-buildpack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-meteor-buildpack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-meteor-buildpack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-meteor-buildpack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-meteor-buildpack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudfoundry-community","download_url":"https://codeload.github.com/cloudfoundry-community/cf-meteor-buildpack/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudfoundry-community%2Fcf-meteor-buildpack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279015348,"owners_count":26085686,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"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":"2025-10-13T13:48:58.102Z","updated_at":"2025-10-13T13:49:39.498Z","avatar_url":"https://github.com/cloudfoundry-community.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Cloud Foundry Meteor Buildpack\n==============================\n\n##Create a sample app with 'meteor'\n\n```\n% meteor create --example leaderboard\nleaderboard: created.\n\nTo run your new app:\n   cd leaderboard\n   meteor\n```\n\n##Initial deploy of your app\n\nWe need to do an initial deploy of our app to Cloud Foundry so the app environment and bound services can be modified in following steps.\n\n```\n% cf push leaderboard -b https://github.com/cloudfoundry-community/cf-meteor-buildpack.git --no-start\n```\n\nThis will not start the app, it will only upload the app.  We will need to create a database to make the example app work.\n\n##Start your Cloud Foundry app\n\nTo bind a Mongo service to our app we will look into the Cloud Foundry marketplace, create a mongo service instance and then bind that instance to our app.\n\nThere are two options, you can use MongoDB or Mongolab.\n\n###MongoDB\n```\n% cf marketplace\nGetting services from marketplace in org cs-home / space development as [username]...\nOK\n\nservice   plans   description\nmongodb   100    MongoDB NoSQL database\n\n% cf create-service mongodb 100 leaderboard-mongodb\nCreating service leaderboard-mongodb in org cs-home / space development as [username]...\nOK\n\n% cf services\nGetting services in org cs-home / space development as [username]...\nOK\n\nname               service   plan   bound apps\nleaderboard-mongodb   mongodb   100\n\n% cf bind-service leaderboard leaderboard-mongodb\nBinding service leaderboard-mongodb to app leaderboard in org [org] / space development as [username]...\nOK\nTIP: Use 'cf restage' to ensure your env variable changes take effect\n\n% cf start leaderboard\nStarting app leaderboard in org [org] / space development as [username]...\n...\n1 of 1 instances running\n\nApp started\n...\n```\n\n###MongoLab\n```\n% cf marketplace\nGetting services from marketplace in org cs-home / space development as [username]...\nOK\n\nservice   plans   description\nmongolab  sandbox    MongoDB NoSQL database\n\n% cf create-service mongolab sandbox leaderboard-mongolab\nCreating service leaderboard-mongolab in org cs-home / space development as [username]...\nOK\n\n% cf services\nGetting services in org cs-home / space development as [username]...\nOK\n\nname               service   plan   bound apps\nleaderboard-mongolab   mongolab   sandbox\n\n% cf bind-service leaderboard leaderboard-mongolab\nBinding service leaderboard-mongolab to app leaderboard in org [org] / space development as [username]...\nOK\nTIP: Use 'cf restage' to ensure your env variable changes take effect\n\n% cf start leaderboard\nStarting app leaderboard in org [org] / space development as [username]...\n...\n1 of 1 instances running\n\nApp started\n...\n```\n\nNow the leaderboard app should be running on Cloud Foundry. Go to your ROOT_URL, http://leaderboard.[CF Domain URL] in a 2 browsers and watch updates show up on the other browser immediately via web sockets to Cloud Foundry app.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry-community%2Fcf-meteor-buildpack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudfoundry-community%2Fcf-meteor-buildpack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudfoundry-community%2Fcf-meteor-buildpack/lists"}