Static website source code for awsbites.com.
Needs a recent version of Node.js (recommended 14+).
Install all the needed dependencies with:
npm install
Run the dev server with:
npm start
This will give you a URL for a local live server
Simply run:
npm run build
The 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 build
Deployment happen automatically through GitHub Actions.
There are 3 different ways to trigger a deployment:
- On push: Every time a new push to the
main
branch is made a deployment is started. - On schedule: A new build and deployment of the current
main
branch is done automatically every Friday at 00:01. - On demand: You can trigger the
deploy
workflow manually.