{"id":19551778,"url":"https://github.com/leapfrogtechnology/shift","last_synced_at":"2026-05-17T14:37:01.624Z","repository":{"id":144200753,"uuid":"204430332","full_name":"leapfrogtechnology/shift","owner":"leapfrogtechnology","description":"Tool for Automated Infrastructure Creation and Deployment","archived":false,"fork":false,"pushed_at":"2023-02-24T22:57:11.000Z","size":11826,"stargazers_count":2,"open_issues_count":10,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-02-26T07:17:11.596Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/leapfrogtechnology.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":"2019-08-26T08:24:42.000Z","updated_at":"2023-01-02T18:13:00.000Z","dependencies_parsed_at":"2023-06-18T07:45:31.881Z","dependency_job_id":null,"html_url":"https://github.com/leapfrogtechnology/shift","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/leapfrogtechnology/shift","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leapfrogtechnology%2Fshift","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leapfrogtechnology%2Fshift/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leapfrogtechnology%2Fshift/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leapfrogtechnology%2Fshift/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leapfrogtechnology","download_url":"https://codeload.github.com/leapfrogtechnology/shift/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leapfrogtechnology%2Fshift/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33142476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"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-11-11T04:15:03.327Z","updated_at":"2026-05-17T14:37:01.597Z","avatar_url":"https://github.com/leapfrogtechnology.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Shift\n\n![GitHub release](https://img.shields.io/github/release/leapfrogtechnology/shift.svg?style=flat)\n![CircleCI](https://img.shields.io/circleci/build/github/leapfrogtechnology/shift/master?style=flat)\n![GitHub](https://img.shields.io/github/license/leapfrogtechnology/shift.svg?style=flat)\n\nAutomated infrastructure creation and deployment tool.\n\n## About\n\nShift focuses on creating your infrastructure with ease and automating your deployments.\n\n## Usage\n\n### 1. Install Shift:\n\n```\n$ curl -sf https://raw.githubusercontent.com/leapfrogtechnology/shift/master/install.sh | sudo sh\n```\n\n### 2. Verify Installation:\n\n```\n$ shift-cli\n```\n\n### 3. AWS Credentials\n\nBefore using shift, you have to provide your AWS credentials. Also, make sure you have the correct access for your credentials.\n\nSimply create `~/.aws/credentials` file for storing AWS credentials. \u003cbr/\u003e\nExample:\n\n```\n[example-profile]\naws_access_key_id = xxxxxx\naws_secret_access_key = xxxxxx\n```\n\nTo know more about AWS configurations, view [Configuring the AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html)\n\n### 4. Setup\n\nGo to your project directory and run `setup` command to initiate the setup process.\n\n```\n$ shift-cli setup\n```\n\n- Enter the name of your project\n- Choose the platform\n- Choose your AWS profile that was setup earlier.\n- Choose the AWS Region where you want your infrastructure to be created.\n- Choose the type of deployment you want.\n- Name your environment.\n- If Backend:\n  - Enter your application port\n  - Enter healthcheck path\n  - Enter dockerfile path\n- Enter Slack webhook URL\n-\n\n```\n Example:\n\n Project Name: shiftbeta\n Choose Cloud Provider: AWS\n Choose AWS profile: default\n Region: US East (North Virginia)\n Choose Deployment Type: Backend\n Environment Name: dev\n Application port: 8080\n Heathcheck Path: /api\n Dockerfile Path: ./\n Slack Webhook URL: https://webhook.slack.com\n```\n\n`shift.json` file will be created in your project directory like below.\n\n```json\n{\n  \"name\": \"shiftbeta\",\n  \"platform\": \"AWS\",\n  \"profile\": \"default\",\n  \"region\": \"us-east-1\",\n  \"type\": \"Backend\",\n  \"port\": \"80\",\n  \"dockerFilePath\": \"./\",\n  \"healthCheckPath\": \"/\",\n  \"env\": {\n    \"dev\": {\n      \"cluster\": \"shiftbeta-dev\",\n      \"service\": \"shiftbeta-dev\",\n      \"image\": \"009409476372.dkr.ecr.us-east-1.amazonaws.com/shiftbeta/dev-backend\",\n      \"taskDefinition\": \"shiftbeta-dev\"\n    }\n  }\n}\n```\n\n**If you do not want a project-specific config file, you can skip the above step.**\n\n### 5. Deploy\n\n```\n$ shift-cli deploy [env]\n$ shift-cli deploy dev\n```\n\nHere `dev` is the environment you specified in `shif.json`.\n\n### 6. Destroy\n\n```\n$ shift-cli destroy [env]\n```\n\nDestroy infrastracture.\n\n### 7. Usage with CI/CD:\n\nInstead of setting up a `~/.aws/credentials` file. You can also use the following environment variables to set up your AWS credentials.\n\n| Variable              | Description                            |\n| --------------------- | -------------------------------------- |\n| AWS_ACCESS_KEY_ID     | Your AWS access key                    |\n| AWS_SECRET_ACCESS_KEY | Your AWS secret key                    |\n| AWS_REGION            | AWS region where you added your secret |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleapfrogtechnology%2Fshift","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleapfrogtechnology%2Fshift","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleapfrogtechnology%2Fshift/lists"}