grahamar / sbt-dynamodb

DynamoDB Local SBT plugin - NO LONGER MAINTAINED, SEE:
https://github.com/localytics/sbt-dynamodb
MIT License
14 stars 5 forks source link

Possible to use in development? #2

Open sthomp opened 9 years ago

sthomp commented 9 years ago

Is it possible to use this plugin to turn on a local dynamodb instance using 'sbt run'? Works great for integration tests... but currently in development I need to manually bring up local dynamodb. It would be nice if this plugin could automatically turn on local dynamodb in development.

fdimuccio commented 9 years ago

Hi, try adding this to build.sbt:

run in Compile <<= (run in Compile).dependsOn(DynamoDBLocal.Keys.startDynamoDBLocal)
sthomp commented 9 years ago

Thanks. SBT is not my strong point :)

bdarfler commented 8 years ago

Hi, looks like this repo has gone quiet. We've forked it to keep making improvements including making it easier to hook into various stages of sbt. Check it out https://github.com/localytics/sbt-dynamodb/.