$ brew install jenv
This file contains 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
export GOROOT=/usr/local/go | |
export GOPATH=$HOME/go | |
export GOBIN=$GOPATH/bin | |
export PATH=$PATH:$GOROOT:$GOPATH:$GOBIN |
- Download local DynamoDB
- Unzip to a local folder
> mkdir ~/mydynamodb
> cd ~/mydynamodb
> unzip -a ~/Downloads/dynamodb_local_latest.zip
Setup a database GUI client dynamodb-admin
- install the node library as global
> npm install dynamodb-admin -g
- Run dynamodb-admin by pointing to the local server endpoint
Install @babel/cli, @babel/core, @babel/node, and @babel/preset-env
yarn add --dev @babel/cli @babel/core @babel/node @babel/preset-env
Create .babelrc
{
Redis is used to support the message queue. Run below command to run the offical Redis container
$ docker run --name my-redis-container -p 6379:6379 -d redis
(Optional) To access Redis, check this gist
OlderNewer