Merged in feature/localstackcompose (pull request #49)

Add Localstack to Compose

* localstack

* addedlocalstackpluscleanup#
This commit is contained in:
Michael McGuinness
2025-02-05 18:33:06 +00:00
parent 5c253b3592
commit 78dc2f6cbc
6 changed files with 121 additions and 50 deletions
+12 -2
View File
@@ -16,7 +16,8 @@
"gotools@0.25.0",
"nodePackages.jsonlint@1.6.3",
"oapi-codegen@2.4.1",
"vacuum-go@0.14.1"
"vacuum-go@0.14.1",
"awscli2@2.19.0"
],
"shell": {
"init_hook": [
@@ -34,7 +35,16 @@
"DB_NOSSL": "true",
"AWS_ACCESS_KEY_ID": "test",
"AWS_SECRET_ACCESS_KEY": "test",
"AWS_REGION": "us-east-1"
"AWS_SESSION_TOKEN": "",
"AWS_REGION": "us-east-1",
"AWS_ENDPOINT_URL": "http://localhost:4566",
"QNAME_DOCUMENT_CLEAN": "document_clean",
"QNAME_DOCUMENT_INIT": "document_init",
"QNAME_QUERY_RUNNER": "query_runner",
"DOCUMENT_CLEAN_URL": "http://localstack:4566/queue/us-east-1/000000000000/document_clean",
"DOCUMENT_INIT_URL": "http://localstack:4566/queue/us-east-1/000000000000/document_init",
"QUERYRUNNER_URL": "http://localstack:4566/queue/us-east-1/000000000000/query_runner",
"BUCKET_IN": "documentin"
},
"env_from": ".env"
}