diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2018-04-03 19:53:42 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2018-04-06 15:36:09 -0700 |
commit | 83c91c9ddcf9f65a903351dc54e917d65bfa15f5 (patch) | |
tree | c88b467965ddfac4f48a409908cd2e560e0b1993 | |
parent | ceee0ea20765e16727cbc32aecfb17f28f5234dc (diff) |
Add DbTool usage to READMEvideo-refresh
-rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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" |