Taqi Tahmid dfcea79f84
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/manual/build Pipeline was successful
ci: add repo secret
2025-08-23 10:27:36 +03:00
2025-08-23 10:27:36 +03:00
2025-02-11 21:48:18 +02:00
2025-07-28 20:36:46 +03:00

My Portfolio Website

Overview

This is my personal portfolio website. It is a simple website that showcases my projects and skills. The wbsite has an Overview, Projects, Interests, and Experience section. The website is deployed on my self-hosted Kubernetes cluster.

For more info regarding my homelab setup, please visit my Homelab Repository

Build

This website is built using React and Typescript and is packaged as a container.

npm install
npm run build

Deploy

This website is packaged as a container and deployed using nginx.

source .env
docker build -t my-portfolio-app .
docker tag my-portfolio-app:latest $DOCKER_REGISTRY/my-portfolio-app:latest
docker push $DOCKER_REGISTRY/my-portfolio-app:latest

# Check the registry
curl -u user:pass https://$DOCKER_REGISTRY/v2/_catalog

# Or if using gitea registry
curl --netrc -X GET https://gitea.yourdomain.com/v2/_catalog

CI/CD

Run in Gitea Actions within kubernetes cluster

Current, the project has workflow files for:

  • Build and push the container to the registry
  • Deploy the container to the Kubernetes cluster

Thus making a commit to the master branch will automatically build the container and deploy it to the cluster.

Description
The repository for my portfolio website. The website is made with React.
https://portfolio.tahmidcloud.com
Readme 576 KiB
Languages
TypeScript 86.3%
Shell 8.5%
JavaScript 2.4%
Dockerfile 1.6%
HTML 0.9%
Other 0.3%