docs(README): document new workflow

main
sgoudham 1 year ago
parent 5a7fea8eac
commit 16cc67c415
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -15,13 +15,13 @@ have much experience with the tech stack that I've chosen here or even front-end
I hope this maybe, just maybe inspires someone else to just throw themselves into a project and have some fun along the I hope this maybe, just maybe inspires someone else to just throw themselves into a project and have some fun along the
way :D way :D
Also, *technically*, this is a **work-in-progress** but shh... Also, _technically_, this is a **work-in-progress** but shh...
## Dependencies ## Dependencies
- NodeJS 18 - NodeJS 20
- Yarn - Yarn
- **(Optional)** Container Orchestration Tool (e.g Docker) - **(Optional)** Container Orchestration Tool (e.g. Docker)
If you're a ~~filthy~~ [Nix/NixOS](https://nixos.org/) user, you can take advantage of the [flake.nix](flake.nix) by If you're a ~~filthy~~ [Nix/NixOS](https://nixos.org/) user, you can take advantage of the [flake.nix](flake.nix) by
running `nix develop` to automatically get a shell with all the required dependencies. running `nix develop` to automatically get a shell with all the required dependencies.
@ -44,27 +44,21 @@ running `nix develop` to automatically get a shell with all the required depende
provided [Dockerfile](Dockerfile): provided [Dockerfile](Dockerfile):
```shell ```shell
docker build -t website . yarn docker:preview # or yarn docker:release
docker run --rm -it -p 3000:3000 --name website website:latest
``` ```
## Deployment ## Deployment
This is mostly for me when I revisit this godforsaken project in 7 months having forgotten everything :P This is mostly for me when I revisit this godforsaken project in 7 months having forgotten everything :P
This repository has a [publish.yml](.github/workflows/publish.yml) action which automatically builds This repository has 2 workflow files:
the [Dockerfile](Dockerfile) and pushes
to [Docker Hub](https://hub.docker.com/repository/docker/sgoudham/website/general) with the latest updates. This image
is then automatically retrieved by [Watchtower](https://containrrr.dev/watchtower/) on my server which automatically
replaces the production docker container, therefore deploying the new updates to production. (In the future, I may
switch this workflow to only use [Portainer](https://www.portainer.io/).)
### Manual Commands - **[preview.yml](.github/workflows/preview.yml)** - This workflow is triggered on every pushed commit to the main branch.
- The website is built and deployed to docker hub as `sgoudham/website:preview`
```shell - My server automatically pulls the latest image from the `preview` tag and deploys it under `https://preview.goudham.com`.
docker tag website:latest sgoudham/website:latest - **[release.yml](.github/workflows/release.yml)** - This workflow is triggered on any pushed tag.
docker push sgoudham/website:latest - The website is built and deployed to docker hub as `sgoudham/website:<tag>`.
``` - My server automatically pulls the latest tag `<tag>` and deploys it under `https://goudham.com`.
## Contributing ## Contributing

Loading…
Cancel
Save