Skip to content

Commit a4a8151

Browse files
committed
Add additional comments/documentation.
1 parent 8d13332 commit a4a8151

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Documentation can be found at [https://hexdocs.pm/ex_aws_dynamo](https://hexdocs
2727

2828
### DynamoDB Local
2929

30-
If you are running this module against a local version of DynamoDB, you'll want to make sure that you have installed the latest version, currently `1.11.477` (released 2019-02-06). You can find links to download the latest version [here](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html).
30+
If you are running this module against a local development instance of DynamoDB, you'll want to make sure that you have installed at least version `1.11.477` (released 2019-02-06). You can find links to download the latest version [here](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html).
3131

3232
## Configuration
3333

test/lib/dynamo/integration_test.exs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
defmodule ExAws.DynamoIntegrationTest do
22
use ExUnit.Case, async: true
33

4-
## These tests run against DynamoDb Local
4+
## These tests run against DynamoDB Local
55
#
66
# http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html
7-
# In this way they can safely delete data and tables without risking actual data on Dynamo
7+
# In this way they can safely delete data and tables without risking actual data on production Dynamo.
88

99
# Only run the tests in this module if we can find a running
10-
# instance of DDB Local on the port specified in config/test.exs
10+
# instance of DDB Local on the port specified in config/ddb_local_test.exs
11+
# See README for more information.
1112
case DDBLocal.try_connect() do
1213
:ok ->
1314
alias ExAws.Dynamo, warn: false

0 commit comments

Comments
 (0)