Some angular code i wrote while following: Angular - The Complete Guide (2025 Edition) https://angular-portfolio.meisterlala.dev
  • TypeScript 38.5%
  • HTML 30.9%
  • CSS 25.3%
  • Dockerfile 2.1%
  • JavaScript 2%
  • Other 1.2%
Find a file
2026-08-24 00:12:58 +02:00
01-starting-project added 02-finance-calculator with required files 2025-08-17 17:35:37 +02:00
02-finance-calculator better formatting 2025-08-17 20:00:27 +02:00
03-debugging Test of merging 2025-08-18 23:22:22 +02:00
04-dashboard Added Ticket code 2025-08-22 14:26:16 +02:00
05-directives-deep-dive Finish section 7 2025-08-22 21:39:26 +02:00
06-pipes-deep-dive added Readme 2025-08-23 16:06:53 +02:00
07-services-deep-dive Inject 2025-08-24 13:42:28 +02:00
08-change-detection-deep-dive Added a counter 2025-08-24 20:36:12 +02:00
09-rxjs Add more Signals 2025-08-24 22:09:46 +02:00
10-images Finish lecture 12 2025-08-25 20:38:36 +02:00
11-forms feat(login): migrate to reactive forms and simplify template validation 2026-08-23 15:53:20 +02:00
portfolio-index Update image 2025-08-25 22:33:54 +02:00
.dockerignore added docker 2025-08-16 21:21:27 +02:00
docker-compose.yml Updated Build process 2025-08-22 20:37:23 +02:00
Dockerfile fix(Dockerfile): pin pnpm version to major version 10 for consistency 2026-08-23 16:10:28 +02:00
nginx.conf Fix bad path 2025-08-25 00:16:48 +02:00
push-docker.ps1 feat(push-docker): update script to default to multi-arch builds for amd64 and arm64 2026-08-24 00:12:58 +02:00
README.md Spelling 2025-08-23 16:08:14 +02:00

Presonal Portfolio Website

This is my source code that i wrote while learning Angular and following a course.

View

Im running this inside a k8s cluseter. You can view it here: angular-portfolio.meisterlala.dev

Running the project yourself

You can run this project with docker and then access it on http://localhost:8080

docker compose up --build

or just run parts of it with:

# Go into the folder of the part you want to run
cd 04-dashboard

# Install pnpm if you don't have it
npm install -g pnpm

# Install dependencies
pnpm install
# Start the project (access on http://localhost:4200)
pnpm start