AWS Amplify Flashcards
1
Q
Are Amplify environments directly linked to Git branches?
A
No
2
Q
What are the two advertised features of the Amplify Console?
A
Static Hosting (CDN) Continuous Deployment (Frontend and Backend)
3
Q
How to add a new environment to your Amplify Project?
A
amplify env add ____
4
Q
What does the “amplify env checkout ___” do?
A
It changes the active environment to the one specified but does not discard local backend edits unlike Git would do
5
Q
Does “git checkout -b dev” automatically sets your project to use the dev Amplify environment?
A
NO! They are two separate things.
6
Q
How can you pull an Amplify env from the cloud and overwrite your local backend edits?
A
By using the “amplify env pull –restore”