6 lines
207 B
Bash
Executable File
6 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit # Exit the script with error if any of the commands fail
|
|
|
|
sam build
|
|
sam local invoke --docker-network host --parameter-overrides "MongoDbUri=mongodb://host.docker.internal:27017"
|