-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,254 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: DeployBackendDev | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
deploy-dev: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github-actions-backend-access | ||
aws-region: ap-south-1 | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "^1.20" | ||
|
||
- name: Build backend and deploy to S3 | ||
run: | | ||
apt-get update && apt-get install -y zip | ||
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o main main.go | ||
zip canopas_serverless_dev.zip main | ||
aws s3 cp canopas_serverless_dev.zip s3://canopas-dev-lambda-handlers | ||
- name: Deploy cloudformation stack | ||
id: canopas-website-dev-lambda-stack | ||
uses: aws-actions/aws-cloudformation-github-deploy@v1 | ||
with: | ||
name: canopas-website-dev-lambda-stack | ||
template: infrastructure/backend.yml | ||
capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM | ||
timeout-in-minutes: "10" | ||
no-fail-on-empty-changeset: "1" | ||
parameter-overrides: >- | ||
EnvName=dev, | ||
Sender=${{ secrets.SENDER }}, | ||
ContactSender=${{ secrets.CONTACT_SENDER }}, | ||
JobsReceiver=${{ secrets.JOBS_RECEIVER }}, | ||
ContactReceiver=${{ secrets.CONTACT_RECEIVER }}, | ||
AccessKeyId=${{ secrets.ACCESS_KEY_ID }}, | ||
SecretAccessKey=${{ secrets.SECRET_ACCESS_KEY }}, | ||
Region=${{ secrets.AWS_REGION }}, | ||
DbUsername=${{ secrets.DB_USERNAME }}, | ||
DbPassword=${{ secrets.DB_PASSWORD }}, | ||
DbHost=${{ secrets.DB_HOST }}, | ||
DbPort=${{ secrets.DB_PORT }}, | ||
DbName=${{ secrets.DB_NAME }}, | ||
RecaptchaConfigJSONBase64=${{ secrets.RECAPTCHA_CONFIG_JSON_BASE64 }}, | ||
RecaptchaSiteKey=${{ secrets.RECAPTCHA_SITE_KEY }}, | ||
RecaptchaProjectId=${{ secrets.RECAPTCHA_PROJECT_ID }}, | ||
JobsSpreadsheetId=${{ secrets.JOBS_SPREADSHEET_ID }}, | ||
JobsSheetId=${{ secrets.JOBS_SHEET_ID }}, | ||
GithubAccessToken=${{ secrets.PERSONAL_ACCESS_TOKEN_GITHUB }}, | ||
ResourcesURL=${{secrets.RESOURCES_URL}}, | ||
LambdaBucket=canopas-dev-lambda-handlers, | ||
LambdaUrl=canopas_serverless_dev.zip, | ||
LambdaTimeout=10, | ||
LambdaRoleArnName=${{ secrets.LAMBDA_ROLE_ARN_NAME }}, | ||
LambdaFunctionArnName=${{ secrets.DEV_LAMBDA_FUNCTION_ARN_NAME }}, | ||
LambdaRoleName=canopas-dev-lambda-role, | ||
LambdaName=canopas-dev-lambda-function, | ||
ApiGatewayName=canopas-dev-lambda-api, | ||
CustomDomainName=test-api.canopas.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: DeployBackendDev | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" | ||
|
||
jobs: | ||
deploy-dev: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github-actions-backend-access | ||
aws-region: ap-south-1 | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "^1.20" | ||
|
||
- name: Build backend and deploy to S3 | ||
run: | | ||
apt-get update && apt-get install -y zip | ||
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o main main.go | ||
zip canopas_serverless_dev.zip main | ||
aws s3 cp canopas_serverless_dev.zip s3://canopas-dev-lambda-handlers | ||
- name: Deploy cloudformation stack | ||
id: canopas-website-dev-lambda-stack | ||
uses: aws-actions/aws-cloudformation-github-deploy@v1 | ||
with: | ||
name: canopas-website-dev-lambda-stack | ||
template: infrastructure/backend.yml | ||
capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM | ||
timeout-in-minutes: "10" | ||
no-fail-on-empty-changeset: "1" | ||
parameter-overrides: >- | ||
EnvName=dev, | ||
Sender=${{ secrets.SENDER }}, | ||
ContactSender=${{ secrets.CONTACT_SENDER }}, | ||
JobsReceiver=${{ secrets.JOBS_RECEIVER }}, | ||
ContactReceiver=${{ secrets.CONTACT_RECEIVER }}, | ||
AccessKeyId=${{ secrets.ACCESS_KEY_ID }}, | ||
SecretAccessKey=${{ secrets.SECRET_ACCESS_KEY }}, | ||
Region=${{ secrets.AWS_REGION }}, | ||
DbUsername=${{ secrets.DB_USERNAME }}, | ||
DbPassword=${{ secrets.DB_PASSWORD }}, | ||
DbHost=${{ secrets.DB_HOST }}, | ||
DbPort=${{ secrets.DB_PORT }}, | ||
DbName=${{ secrets.DB_NAME }}, | ||
RecaptchaConfigJSONBase64=${{ secrets.RECAPTCHA_CONFIG_JSON_BASE64 }}, | ||
RecaptchaSiteKey=${{ secrets.RECAPTCHA_SITE_KEY }}, | ||
RecaptchaProjectId=${{ secrets.RECAPTCHA_PROJECT_ID }}, | ||
JobsSpreadsheetId=${{ secrets.JOBS_SPREADSHEET_ID }}, | ||
JobsSheetId=${{ secrets.JOBS_SHEET_ID }}, | ||
GithubAccessToken=${{ secrets.PERSONAL_ACCESS_TOKEN_GITHUB }}, | ||
ResourcesURL=${{secrets.RESOURCES_URL}}, | ||
LambdaBucket=canopas-dev-lambda-handlers, | ||
LambdaUrl=canopas_serverless_dev.zip, | ||
LambdaTimeout=10, | ||
LambdaRoleArnName=${{ secrets.LAMBDA_ROLE_ARN_NAME }}, | ||
LambdaFunctionArnName=${{ secrets.DEV_LAMBDA_FUNCTION_ARN_NAME }}, | ||
LambdaRoleName=canopas-dev-lambda-role, | ||
LambdaName=canopas-dev-lambda-function, | ||
ApiGatewayName=canopas-dev-lambda-api, | ||
CustomDomainName=test-api.canopas.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,48 +40,17 @@ jobs: | |
sh ./../deploy/generate-sitemap.sh https://dev-stack.canopas.com https://dev-stack-api.canopas.com | ||
bash ./../deploy/deploy-ecr-image.sh dev-frontend ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com/canopas-website-frontend | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "^1.17.5" | ||
|
||
- name: Build backend and push on ECR | ||
run: | | ||
bash ./deploy/deploy-ecr-image.sh dev-backend ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com/canopas-website-backend | ||
- name: Deploy cloudformation stack | ||
id: canopas-website-dev-ECS-EC2-stack | ||
uses: aws-actions/aws-cloudformation-github-deploy@v1 | ||
with: | ||
name: canopas-website-dev-ECS-EC2-stack | ||
template: infrastructure/template.yml | ||
template: infrastructure/frontend.yml | ||
capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM | ||
timeout-in-minutes: "10" | ||
no-fail-on-empty-changeset: "1" | ||
parameter-overrides: >- | ||
EnvName=dev, | ||
Sender=${{ secrets.SENDER }}, | ||
ContactSender=${{ secrets.CONTACT_SENDER }}, | ||
JobsReceiver=${{ secrets.JOBS_RECEIVER }}, | ||
ContactReceiver=${{ secrets.CONTACT_RECEIVER }}, | ||
AccessKeyId=${{ secrets.ACCESS_KEY_ID }}, | ||
SecretAccessKey=${{ secrets.SECRET_ACCESS_KEY }}, | ||
Region=${{ secrets.AWS_REGION }}, | ||
DbUsername=${{ secrets.DB_USERNAME }}, | ||
DbPassword=${{ secrets.DB_PASSWORD }}, | ||
DbHost=${{ secrets.DB_HOST }}, | ||
DbPort=${{ secrets.DB_PORT }}, | ||
DbName=${{ secrets.DB_NAME }}, | ||
RecaptchaConfigJSONBase64=${{ secrets.RECAPTCHA_CONFIG_JSON_BASE64 }}, | ||
RecaptchaSiteKey=${{ secrets.RECAPTCHA_SITE_KEY }}, | ||
RecaptchaProjectId=${{ secrets.RECAPTCHA_PROJECT_ID }}, | ||
JobsSpreadsheetId=${{ secrets.JOBS_SPREADSHEET_ID }}, | ||
JobsSheetId=${{ secrets.JOBS_SHEET_ID }}, | ||
GithubAccessToken=${{ secrets.PERSONAL_ACCESS_TOKEN_GITHUB }}, | ||
ResourcesURL=${{secrets.RESOURCES_URL}}, | ||
ClusterName=canopas-website-dev, | ||
ImageTag=${{ github.sha }}-${{ github.run_attempt }}-dev-frontend, | ||
BackendImageTag=${{ github.sha }}-${{ github.run_attempt }}-dev-backend, | ||
NginxImageTag=${{ github.sha }}-${{ github.run_attempt }}-dev-nginx | ||
NginxImageTag=${{ github.sha }}-${{ github.run_attempt }}-dev-nginx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
push: | ||
branches: | ||
- "master" | ||
|
||
jobs: | ||
deploy-prod: | ||
runs-on: ubuntu-latest | ||
|
@@ -39,49 +39,18 @@ jobs: | |
mv src/config.prod.js src/config.js | ||
sh ./../deploy/generate-sitemap.sh https://canopas.com https://prod-stack-api.canopas.com | ||
bash ./../deploy/deploy-ecr-image.sh prod-frontend ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com/canopas-website-frontend | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "^1.17.5" | ||
|
||
- name: Build backend and push on ECR | ||
run: | | ||
bash ./deploy/deploy-ecr-image.sh prod-backend ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_REGION.amazonaws.com/canopas-website-backend | ||
- name: Deploy cloudformation stack | ||
id: canopas-website-prod-ECS-EC2-stack | ||
uses: aws-actions/aws-cloudformation-github-deploy@v1 | ||
with: | ||
name: canopas-website-prod-ECS-EC2-stack | ||
template: infrastructure/template.yml | ||
template: infrastructure/frontend.yml | ||
capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM | ||
timeout-in-minutes: "10" | ||
no-fail-on-empty-changeset: "1" | ||
parameter-overrides: >- | ||
EnvName=prod, | ||
Sender=${{ secrets.SENDER }}, | ||
ContactSender=${{ secrets.CONTACT_SENDER }}, | ||
JobsReceiver=${{ secrets.JOBS_RECEIVER }}, | ||
ContactReceiver=${{ secrets.CONTACT_RECEIVER }}, | ||
AccessKeyId=${{ secrets.ACCESS_KEY_ID }}, | ||
SecretAccessKey=${{ secrets.SECRET_ACCESS_KEY }}, | ||
Region=${{ secrets.AWS_REGION }}, | ||
DbUsername=${{ secrets.DB_USERNAME }}, | ||
DbPassword=${{ secrets.DB_PASSWORD }}, | ||
DbHost=${{ secrets.DB_HOST }}, | ||
DbPort=${{ secrets.DB_PORT }}, | ||
DbName=${{ secrets.DB_NAME }}, | ||
RecaptchaConfigJSONBase64=${{ secrets.RECAPTCHA_CONFIG_JSON_BASE64 }}, | ||
RecaptchaSiteKey=${{ secrets.RECAPTCHA_SITE_KEY }}, | ||
RecaptchaProjectId=${{ secrets.RECAPTCHA_PROJECT_ID }}, | ||
JobsSpreadsheetId=${{ secrets.JOBS_SPREADSHEET_ID }}, | ||
JobsSheetId=${{ secrets.JOBS_SHEET_ID }}, | ||
GithubAccessToken=${{ secrets.PERSONAL_ACCESS_TOKEN_GITHUB }}, | ||
ResourcesURL=${{secrets.RESOURCES_URL}}, | ||
ClusterName=canopas-website-prod, | ||
ImageTag=${{ github.sha }}-${{ github.run_attempt }}-prod-frontend, | ||
BackendImageTag=${{ github.sha }}-${{ github.run_attempt }}-prod-backend, | ||
NginxImageTag=${{ github.sha }}-${{ github.run_attempt }}-prod-nginx | ||
NginxImageTag=${{ github.sha }}-${{ github.run_attempt }}-prod-nginx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.