File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # This file is used to ignore local build artifacts and binaries.
2+ bin /
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ aws-env - Secure way to handle environment variables in Docker
881 . Populate environment variables while starting application inside the docker container (default)
992 . Generate .env file (--format=dotenv)
1010
11+ ## How to build it
12+ ``` bash
13+ make build
14+ ```
15+
1116## Usage
1217
13181 . Add parameters to [ Parameter Store] ( https://console.aws.amazon.com/ec2/v2/home#Parameters: ) using hierarchy in names:
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ mkdir $BUILD_DIR
77
88for GOOS in linux windows; do
99 for GOARCH in 386 amd64; do
10- GOOS=$GOOS GOARCH=$GOARCH go build -v -o $BUILD_DIR /$NAME -$GOOS -$GOARCH
10+ CGO_ENABLED=0 GOOS=$GOOS GOARCH=$GOARCH go build -v -o $BUILD_DIR /$NAME -$GOOS -$GOARCH
1111 done
1212done
Original file line number Diff line number Diff line change 11module github.com/in4it/aws-env
22
3- go 1.24.2
3+ go 1.24.5
44
55require (
66 github.com/aws/aws-sdk-go v1.44.105 // indirect
You can’t perform that action at this time.
0 commit comments