{"id":16994924,"url":"https://github.com/jackadams/meteoric","last_synced_at":"2026-05-21T07:01:59.882Z","repository":{"id":76998558,"uuid":"69881129","full_name":"JackAdams/meteoric","owner":"JackAdams","description":"Deploy Meteor apps to your own servers","archived":false,"fork":false,"pushed_at":"2017-01-16T10:10:05.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T05:44:08.627Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JackAdams.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-03T14:53:50.000Z","updated_at":"2016-10-03T14:55:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"967d778b-bf13-446f-9cd2-41d45bd6b7fd","html_url":"https://github.com/JackAdams/meteoric","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JackAdams/meteoric","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JackAdams%2Fmeteoric","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JackAdams%2Fmeteoric/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JackAdams%2Fmeteoric/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JackAdams%2Fmeteoric/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JackAdams","download_url":"https://codeload.github.com/JackAdams/meteoric/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JackAdams%2Fmeteoric/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33292059,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"last_error":"SSL_read: 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":"2024-10-14T03:47:03.369Z","updated_at":"2026-05-21T07:01:59.842Z","avatar_url":"https://github.com/JackAdams.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meteoric\n\nDeploy Meteor to Ubuntu 16 servers\n\n## How to install and update\n\nThe easiest way to install (or update) `meteoric` is using curl:\n\n```bash\n$ curl https://raw.github.com/JackAdams/meteoric.sh/master/install | sh\n```\n\nYou may need to `sudo` in order for the script to symlink `meteoric` to your `/usr/local/bin`.\n\n## How to use\n\nCreate a conf file named `meteoric.config.sh` in your project's folder, setting the following variables:\n\n(Only the first five variables are required.)\n\n```bash\n\n# What's your app name?\nAPP_NAME=microscope\n\n# IP or URL of the server you want to deploy to\nAPP_HOST=my.app.com\n\n# What's your project's Git repo?\nGIT_URL=git://github.com/TelescopeJS/Telescope.git\n\n# If you would like to use a different branch, set it here\nGIT_BRANCH=master\n\n# If your app is not on the repository root, set this\nAPP_PATH=.\n\n# If you want to deploy to a different port (default is 80)\n#PORT=4000\n\n# if you want to deploy instances to several consecutive ports -- e.g. 3000, 3001, 3002, 3003\n#INSTANCES=4\n\n# Comment this if your host is not an EC2 instance\n#EC2_PEM_FILE=~/.ssh/proxynet.pem\n\n# If you want to use a specific meteor release to deploy your app, you need to specify this\n#METEOR_RELEASE=1.4.1.1\n\n# If your repository contains several meteor app, set a unique $BUNDLE_NAME for each app to stop files/folders overwriting each other during the build process (default bundle name is 'bundle')\n#BUNDLE_NAME=admin.console\n\n# Kill the forever and node processes, and deletes the bundle directory and tar file prior to deploying\n#FORCE_CLEAN=false\n\n# If you want a different ROOT_URL, when using ssl or a load balancer for instance, set it here -- otherwise you get http://$APP_HOST ($APP_HOST as defined above)\n#ROOT_URL=mycustom.url.com\n\n# If you want something other than mongodb://localhost:27017/$APP_NAME ($APP_NAME as defined above) -- e.g. if you want to create a user for your mongo instance\n#MONGO_URL=mongodb://dbuser:dbuserpassword@127.0.0.1:27017/mydb?replicaSet=rs0\n\n# Set other environment variables (separated by spaces)\n#ENVIRONMENT_VARIABLES='MONGO_OPLOG_URL=mongodb://oplogger:oploggerpassword@127.0.0.1:27017/local?authSource=admin MAIL_URL=smtp://gmailaddress%40gmail.com:gmailpassword@smtp.gmail.com:465'\n\n```\n\nThen just run:\n\n```bash\n$ meteoric setup\n\n$ meteoric deploy\n```\n\nTo start/restart instance(s):\n```bash\n$ meteoric start\n```\n\nIf you'd like to use a different location for meteoric.config.sh, supply it as a second parameter:\n\n```bash\n$ meteoric setup /path/to/your.config.sh\n\n$ meteoric deploy /path/to/your.config.sh\n```\n\n\n## Tested on\n\n- Ubuntu 16.04\n\n## Inspiration\n\nThis is a hacked version of [Julien Chamond's Meteoric](https://github.com/julien-c/meteoric.sh) to keep it working for recent versions of Meteor and Ubuntu 16 servers.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjackadams%2Fmeteoric","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjackadams%2Fmeteoric","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjackadams%2Fmeteoric/lists"}