Skip to content

Commit 512f8eb

Browse files
committed
fix Makefile for db_port
1 parent 1dda3e4 commit 512f8eb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ USERNAME ?= admin123
66
DB_NAME ?= testdb
77
USERPWD ?= mysecretpassword
88
STACK_NAME ?= DMsSampleSetupStack
9-
DB_PORT ?= 5432
109
ENDPOINT_URL = http://localhost.localstack.cloud:4566
1110
export AWS_ACCESS_KEY_ID ?= test
1211
export AWS_SECRET_ACCESS_KEY ?= test
@@ -15,7 +14,7 @@ export AWS_DEFAULT_REGION ?= us-east-1
1514
VENV_RUN = . $(VENV_ACTIVATE)
1615

1716
CLOUD_ENV = USERNAME=$(USERNAME) DB_NAME=$(DB_NAME) USERPWD=$(USERPWD) STACK_NAME=$(STACK_NAME)
18-
LOCAL_ENV = USERNAME=$(USERNAME) DB_NAME=$(DB_NAME) USERPWD=$(USERPWD) STACK_NAME=$(STACK_NAME) DB_PORT=$(DB_PORT) ENDPOINT_URL=$(ENDPOINT_URL)
17+
LOCAL_ENV = USERNAME=$(USERNAME) DB_NAME=$(DB_NAME) USERPWD=$(USERPWD) STACK_NAME=$(STACK_NAME) ENDPOINT_URL=$(ENDPOINT_URL)
1918

2019
ifeq ($(OS), Windows_NT)
2120
VENV_ACTIVATE = $(VENV_DIR)/Scripts/activate

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To deploy the infrastructure, you can run the following command:
4141
make deploy
4242
```
4343

44-
> NOTE: By default we create kinesis target endpoint with default settings.
44+
> NOTE: By default we create the kinesis target endpoint with default settings.
4545
> In order to create the target with non-default values set the environment to `KINESIS_TARGET=non-default`.
4646
4747
After successful deployment, you will see the following output:

0 commit comments

Comments
 (0)