JP Blanchette

Results 2 comments of JP Blanchette

I'm on MacOS. This command kill the java process that is using port **8000**: `kill -9 $(lsof -i TCP:8000| grep LISTEN | awk '{print $2}')` Credit: https://medium.com/@valgaze/utility-post-whats-running-on-port-8000-and-how-to-stop-it-2ed771fbb422

My stage value was also dynamic `stage: ${opt:stage, 'local'}`. Removing the `stages` property (and value) from my `serverless.yml` file fixed the issue. ``` custom: dynamodb: stages: - local ```