{"id":16895042,"url":"https://github.com/theduke/elasticdeploy","last_synced_at":"2026-04-13T10:31:57.643Z","repository":{"id":137347607,"uuid":"96404110","full_name":"theduke/ElasticDeploy","owner":"theduke","description":null,"archived":false,"fork":false,"pushed_at":"2017-07-06T07:57:24.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-20T14:43:45.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"tscheiki/ElasticDeploy","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/theduke.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":"2017-07-06T07:56:49.000Z","updated_at":"2017-07-06T07:56:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"85e82337-c9c8-4e5d-a8c8-41c0373922b9","html_url":"https://github.com/theduke/ElasticDeploy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/theduke/ElasticDeploy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theduke%2FElasticDeploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theduke%2FElasticDeploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theduke%2FElasticDeploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theduke%2FElasticDeploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theduke","download_url":"https://codeload.github.com/theduke/ElasticDeploy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theduke%2FElasticDeploy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31748990,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":"2024-10-13T17:20:58.190Z","updated_at":"2026-04-13T10:31:57.625Z","avatar_url":"https://github.com/theduke.png","language":"Python","readme":"ElasticDeploy :+1:\n======\n\nDeploy multiple applications/services/websites on a single AWS Elastic Beanstalk environment.\n\nUnfortunately, there is no easy way to run multiple applications/services/websites, which have their own GIT repository, on a single AWS Elastic Beanstalk environment. ElasticDeploy helps developers solving that problem.\n\nHow does it work?\n------\nFirst, you need to create a main deployment repository. Within the root of this repository, ElasticDeploy will store a file called ``edConfig.json``.\nThis file keeps the information of the external repositories. Each external will be cloned into the main deployment repository (see 'Sample Project Structure').\n\nIn addition, all external repositories are automatically added to your .gitignore file. This means that all changes should happen in the external repository itself. It also creates a script in your .ebextensions folder, where all vhosts are added.\n\n\nGetting Started\n------\n\n1. Install ElasticDeploy (PyPI package)  \n```pip install ElasticDeploy```  \n\n2. Create new main repository  \n```mkdir ed-deployment-repository \u0026\u0026 cd ed-deployment-repository```  \n\n3. Initialize ElasticDeploy  \n```elasticdeploy init```  \n\n4. Follow the initialization guide\n\n5. Create and deploy all applications/services/websites  \n```elasticdeploy createAndDeploy```\n\n\nSample Project Structure\n------\n\n```\ned-deployment-repository\n│   .gitignore\n│   edConfig.json    \n│\n└───.git\n│\n└───.elasticbeanstalk\n│       config.yml\n│   \n└───.ebextensions\n│       98ElasticDeploy.config\n│\n└───project1\n│       file1\n│       file2\n│       subfolder1\n│       subfolder2\n│   \n└───project2\n│       file1\n│       file2\n│       subfolder1\n│       subfolder2\n│   \n└───project3\n│       file1\n│       file2\n│       subfolder1\n│       subfolder2\n```\n\nAll Commands\n------\n\n**Show help page**  \n```elasticdeploy help```\n\n**Initialize ElasticDeploy**  \n```elasticdeploy init```\n\n**Clone all repositories**  \n```elasticdeploy cloneAll```\n\n**Add a new repository**  \n```elasticdeploy newRepo```\n\n**Clone all repositories**  \n```elasticdeploy cloneAll```\n\n**Create application**  \n```elasticdeploy create```\n\n**Deploy latest application**  \n```elasticdeploy deploy```\n\n**Create and deploy application**  \n```elasticdeploy createAndDeploy```\n\n\n\nRequirements\n------\n* [PYTHON](https://www.python.org/downloads/) - Python 2.7  \n* [EB-CLI](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3.html) - Elastic Beanstalk Command Line Interface  \n* [GIT](https://git-scm.com/) - GIT Command Line Interface\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheduke%2Felasticdeploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheduke%2Felasticdeploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheduke%2Felasticdeploy/lists"}