1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

migrated devops from truss to own tool

This commit is contained in:
Lee Brown
2019-07-13 20:55:45 -08:00
parent 4b6e344bb5
commit b831b8deff
9 changed files with 13 additions and 4 deletions

View File

@ -11,10 +11,9 @@ variables:
# Optional:
# PROJECT_NAME: example-project
before_script:
- 'cd ./tools/truss && make install'
- 'cd ./cmd/schema && make install'
- 'cd ./tools/schema && make install'
stages:
- build:dev

1
tools/devops/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
devops

View File

@ -1,4 +1,4 @@
package devops
package deploy
import (
"compress/gzip"
@ -19,7 +19,7 @@ import (
"time"
"geeks-accelerator/oss/saas-starter-kit/internal/platform/tests"
"geeks-accelerator/oss/saas-starter-kit/tools/truss/internal/retry"
"geeks-accelerator/oss/saas-starter-kit/tools/devops/internal/retry"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/acm"
@ -1026,6 +1026,7 @@ func ServiceDeploy(log *log.Logger, req *serviceDeployRequest) error {
return nil
}
_ = ec2TagResource
// Try to find the AWS Cloudwatch Log Group by name or create new one.
{

8
tools/devops/makefile Normal file
View File

@ -0,0 +1,8 @@
SHELL := /bin/bash
install:
go install .
build:
go install .