mirror of
https://github.com/Meisterlala/angular.git
synced 2026-08-30 15:33:33 +00:00
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%
| 01-starting-project | ||
| 02-finance-calculator | ||
| 03-debugging | ||
| 04-dashboard | ||
| 05-directives-deep-dive | ||
| 06-pipes-deep-dive | ||
| 07-services-deep-dive | ||
| 08-change-detection-deep-dive | ||
| 09-rxjs | ||
| 10-images | ||
| 11-forms | ||
| portfolio-index | ||
| .dockerignore | ||
| docker-compose.yml | ||
| Dockerfile | ||
| nginx.conf | ||
| push-docker.ps1 | ||
| README.md | ||
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