Use amplify-cli from this github.com/onlybakam/amplify-cli
mkdir CHAT
cd CHAT
git clone https://github.com/onlybakam/amplify-cli.git
cd amplify-cli
npm install
npm run setup-dev
cd ...
git clone https://github.com/onlybakam/quickchat.git
cd quickchat
npm install
amplify init # use the defaults, set up your profile if necessary
amplify auth add # use defaults
amplify storage add # Read/Write for Auth users only
amplify api add # GraphQL > chatqlreactapp > Amazon Cognito User Pool
# Use the provided schema and custom resolvers under `/amplify/backend/api/chatqlreactapp`
amplify push
npm run start
- Enjoy!