Create DynamoDB Table
aws dynamodb delete-table --table-name TackerChangeItems
aws dynamodb create-table
--table-name TackerChangeItems
--attribute-definitions
AttributeName=task_id,AttributeType=S
AttributeName=task_update,AttributeType=S
--key-schema
AttributeName=task_id,KeyType=HASH
AttributeName=task_update,KeyType=RANGE
--billing-mode PAY_PER_REQUEST
Create Kinesis Data Stream
aws kinesis delete-stream --stream-name todox-tracker-stream
aws kinesis create-stream --stream-name todox-tracker-stream --shard-count 2
Compile proto files
protoc -I proto/ proto/*.proto --go_out=plugins=grpc:data
Build images