Created
February 8, 2015 02:06
-
-
Save zircote/a7a0b1115cd637713ba1 to your computer and use it in GitHub Desktop.
A quick run script to get a AWS DynamoDB Local instance going
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
RUN_DIR=${DIR}/.dynamodb | |
DYNAMODB_LOCAL="http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz" | |
PORT=8000 | |
ARGS="-inMemory -port ${PORT}" | |
install_dynamo_db(){ | |
mkdir -p $1 | |
curl -L $2 | tar xvz -C $1 | |
} | |
if [ ! -f ${RUN_DIR}/DynamoDBLocal.jar ]; then | |
install_dynamo_db ${RUN_DIR} ${DYNAMODB_LOCAL} | |
fi | |
`which java` -Djava.library.path=${RUN_DIR}/DynamoDBLocal_lib -jar ${RUN_DIR}/DynamoDBLocal.jar ${ARGS} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment