From 7c80a3b3634ce3be0ba536946498549493aadfed Mon Sep 17 00:00:00 2001 From: Xander Bazzi Date: Fri, 23 Feb 2024 21:18:47 -0700 Subject: [PATCH] Update README.md and changelog. --- README.md | 6 +++--- changelog.md | 13 +++++++++++++ 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 changelog.md diff --git a/README.md b/README.md index 8b84ecf..4b5b4fd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # Personal website -This static site is hosted on an AWS S3 bucket, which is cached and served globally through AWS Cloudfront Edge Locations. - -The site is programatically updated with GitHub Actions every time the master branch is merged. The action is set up with a declarative `.yaml` file that uploads the source code and assets to the S3 bucket. The workflow then invalidates the Cloudfront distribution's cache so that the latest site content is pulled from the origin bucket. For authentication, the action uses access and secret keys from an authorized AWS IAM user. \ No newline at end of file +A simple static site built with HTML, CSS and JavaScript. Hosted on AWS S3 and distributed globally through AWS Cloudfront. Code updated automatically. +## Backend workflow +This static site is hosted on an AWS S3 bucket, which is cached and served globally through AWS Cloudfront Edge Locations. The code is programatically updated with GitHub Actions every time the master branch is merged. The action is set up with a declarative `.yaml` file that uploads the source code and assets to the S3 bucket. The workflow then invalidates the Cloudfront distribution cache so that the latest site content is pulled from the origin bucket. For authentication, the action uses access and secret keys from an authorized AWS IAM user. \ No newline at end of file diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..61d08c9 --- /dev/null +++ b/changelog.md @@ -0,0 +1,13 @@ +# Changelog + +All notable changes to this site will be documented in this file. + +The format is based on [Semantic Versioning](https://semver.org/). + +## [0.0.1] - 2024-02-23 +### Added + - Changelog file. + - deploy-site.yaml GitHub Actions workflow. + +### Changed + - README.md file.