#TIL 3 Lines to deploy a static website to AWS:
1: aws s3 mb s3://website_name
2: aws s3 sync . s3://website_name
3: aws s3 website s3://website_name --index-document index.html --error-document error.html
evvia!!
Did I miss something? I would love to know how to set permissions
#TIL Today I learned about sets. How could I have missed this for so long? Also how to debug in VSCode. It would seem a developer's education is never complete...