summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2018-04-12 09:17:06 -0700
committerJesse Morgan <jesse@jesterpm.net>2018-04-12 09:17:06 -0700
commit50d07e60e1e0c88d3d5f58b9ca48eb8b01d2eabf (patch)
treedb604f4342d0e0a7ad8031607920a1ed670705cb /README.md
parenta550b630fca5957939bea9ea7319e6a248407fd8 (diff)
parent9db7f109103e2d4ebfdc12d6114ab254a70329bf (diff)
Merge branch 'video-refresh'
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index 0b25794..4d3ec47 100644
--- a/README.md
+++ b/README.md
@@ -19,3 +19,19 @@ Usage
The website defaults to running in dev mode which will only modify the dev Dynamo tables.
You *must recompile* for changes to take effect.
4. Run `maven package` to produce a war file to deploy.
+
+DbTool Usage
+----------------
+
+DbTool is a utility to manage the DynamoDB tables used by GROW. You can run it from your IDE or from
+the command line using Maven.
+
+Run DbTool without arguments to see all options:
+
+ mvn exec:java -Dexec.mainClass="com.p4square.grow.backend.dynamo.DbTool" \
+ -Dexec.arguments=""
+
+To create and populate the DynamoDB tables, run
+
+ mvn exec:java -Dexec.mainClass="com.p4square.grow.backend.dynamo.DbTool" \
+ -Dexec.arguments="--config,devfiles/gw-server.properties,--dev,--bootstrap,devfiles"