Skip to content

Commit

Permalink
Ci/cd (#8)
Browse files Browse the repository at this point in the history
* fix(cors)

* feature(clients):created client sqs queue to add non existing clients when a new notification is scheduled

* fixing user table

* adding cli app and client endpoints|service

* updating cliApp and updating client routes

* added delete notification endpoint, pending e2e testing

* updating cliApp and updating client routes (#4)

* fix(delete): fixed path parameter for deleting notification

* removing log for every get call

* adding github actions

* adding github actions

* removed npm ci

* added lift to global

* added lift to global

* added lift to global

* only deploying from main

* turning off cgo

---------

Co-authored-by: Javier Perez <perez.javier@siemens.com>
  • Loading branch information
japb1998 and Javier Perez committed Jul 21, 2023
1 parent fd7a26a commit 9562ddc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

build:
export GO111MODULE=on
env GOARCH=amd64 GOOS=linux go build -ldflags="-s -w" -o ./bin/scheduleEmail ./scheduleEmail/cmd
env GOARCH=amd64 GOOS=linux go build -ldflags="-s -w" -o ./bin/scheduleCheck ./scheduleCheck/cmd
env GOARCH=amd64 GOOS=linux go build -ldflags="-s -w" -o ./bin/queueHandler ./clientQueue/cmd/main.go
env GOARCH=amd64 GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -o ./bin/scheduleEmail ./scheduleEmail/cmd
env GOARCH=amd64 GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -o ./bin/scheduleCheck ./scheduleCheck/cmd
env GOARCH=amd64 GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -o ./bin/queueHandler ./clientQueue/cmd/main.go
go build -o ./bin/cliApp ./cliApp/cmd
clean:
rm -rf ./bin ./vendor go.sum
Expand Down

0 comments on commit 9562ddc

Please sign in to comment.