diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2014-05-24 01:21:26 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2014-05-24 01:21:26 -0700 |
commit | 865adc8dac28310f2c2285343c168816643d171c (patch) | |
tree | 816de492443ad88ed79c891b52986c02a42e9d66 /build.xml | |
parent | d90c6f8ef2c9b630a39f7e6cbf65897dc2f62011 (diff) |
Adding serverprod target and import tool.
serverprod starts the frontend locally but points it to the prod
dynamodb.
The import tool loads data into dynamodb. Each record has a hash key and
one or more attribute/value pairs. Records are separated by an empty
line. The first line of the record is the hash key. Each subsequent line
is an attribute key, followed by a space, followed by the value.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -22,6 +22,15 @@ </java> </target> + <target name="server-prod" depends="compile"> + <java classname="com.p4square.grow.GrowProcessComponent" + classpathref="classpath.run" fork="true"> + + <arg file="devfiles/grow-server.properties" /> + <arg value="serverprod" /> + </java> + </target> + <target name="frontend" depends="compile"> <java classname="com.p4square.grow.frontend.GrowFrontend" classpathref="classpath.run" fork="true"> |