I use a combination of a static code generator and webpack
to generate a static site, which I then manually copy to S3 (to further expose it though CloudFront) via the AWS cli.
I manage my code with git locally and on a local git server, and was considering a move to CodeCommit to have a complete integration with AWS. The first step would be to synchronize the dest
folder of my repo with an S3 bucket.
I was hoping for a simple integration ("copy upon a push event") but did not find any. I saw a few discussions on that subject with a recent blog post being the closest to what I want to achieve.
It is however a complicated process, involving mysterious setups across three services.
Is there something I missed? A more obvious solution that the answer to a previous SO question?