serverless-dynamodb-local
serverless-dynamodb-local copied to clipboard
Serverless Dynamodb Local Plugin - Allows to run dynamodb locally for serverless
The DynamoDB tooling you guys have written is very useful, but it's spread out over half a dozen packages, and in my experience projects like that can be hard to...
With the introduction of the AWS DynamoDB On-Demand capacity model at re:Invent 2018, table definitions have been changed. As a result, serverless.yml files that use the new 'BillingMode' property result...
Node version: 6.10.30 Yarn version: 0.27.5 Serverless version: 1.20.2 serverless-dynamodb-local version: 1.0.0 Seems related to previous isses https://github.com/99xt/serverless-dynamodb-local/issues/70 & https://github.com/99xt/serverless-dynamodb-local/issues/65. Here is the stacktrace: ``` $ sls dynamodb install Error:...
**Actual Behaviour** when trying to stall dynamodb local using `sls dynamodb install`, I get an error: ``` Error: Error getting DynamoDb local latest tar.gz location undefined: 403 ``` This only...
**Actual Behaviour** Current release is tagged as v1.0.0. Last previous release is v0.1.0, yet when I install I am pulling down v0.2.25? **Expected Behaviour** NPM should install a version that...
Use commande sls plugin install --name serverless-dynamodb-local Fixes issue #174 #196
**Actual Behaviour** bash: /bin/ls: No such file or directory bash: /bin/bash: No such file or directory **Expected Behaviour** sls dynamodb remove **Steps to reproduce it** I'm using docker image and...
**Actual Behaviour** AWS announced support for an automatic provisioning pricing plan. More info: https://medium.com/@softprops/putting-dynamodb-scalability-knobs-on-auto-pilot-3af8520439c9. In short, you can set `BillingMode: PAY_PER_REQUEST` and remove the ProvisionedThoughput section. But at the moment...
**Actual Behaviour** I'm using serverless with python and using docker with dynamo: https://github.com/dwmkerr/docker-dynamodb now created the docker container with port 8000 shared with localhost. ie: ``` dynamo: image: dwmkerr/dynamodb ports:...
**Actual Behaviour** I have following configuration in `serverless.yml`: ``` # plugins plugins: - serverless-webpack - serverless-dynamodb-local - serverless-offline custom: stages: - local - development - production # default stage/environment defaultStage:...