Static website source code for awsbites.com.
Needs a recent version of Node.js (recommended 14+).
Install all the needed dependencies with:
npm installRun the dev server with:
npm startThis will give you a URL for a local live server
Simply run:
npm run buildThe static assets will be made available in dist/.
This is an incremental build, so old files that might not be needed anymore will still be in dist/.
If you need to perform a clean build, you can run:
npm run clean && npm run buildDeployment happen automatically through GitHub Actions.
There are 3 different ways to trigger a deployment:
- On push: Every time a new push to the
mainbranch is made a deployment is started. - On schedule: A new build and deployment of the current
mainbranch is done automatically every Friday at 00:01. - On demand: You can trigger the
deployworkflow manually.