Complete backend and database under 15 minutes for any application! (React / Angular / Vue) AWS Amplify Admin UI ๐ฅ - Getting started

Search for a command to run...

No comments yet. Be the first to comment.
Hey there! Are you feeling stuck in the crowd? Then I've gotta way out! ๐ There is no alternative to hands-on for succeeding as a developer! basic must-knows googling the stuff you don't know that's the most basic thing to know first, as a develo...

Let's make your web app blazing fast!

Hey! I made a TODO web app just for trying out VueJS, with not so cool design. But it's okay for me, as an experiment. This is what I created ๐จโ๐ป Github Repo Create these three files: index.html app.js style.css index.html Things wrapped in {...

The world is developing rapidly with rapid improvements in technology. In this fast-moving world, we the developers also need to tie our shoes tight to focus on running faster! ๐โโ๏ธ๐ฅ Today, I'm talking about the serverless architecture that will he...

Install AWS amplify CLI as:
npm install -g @aws-amplify/cli
Head over to Amplify Admin


You will see something like the above picture, now if you don't have an AWS account you can try this out by selecting "Data" and a local sandbox will be created for you.
After selecting data, you will be asked to select a scheme, for this post I will go with "blank schema" because we want to create our own.



amplify pull --sandboxId your-sandbox-id-here-without-quotation-marks
npm install aws-amplify typescript
import Amplify from 'aws-amplify'
import awsconfig from './aws-exports'
Amplify.configure(awsconfig);
