Add scaffold of first assignment

This commit is contained in:
2025-09-24 12:25:05 +02:00
parent d60747e44a
commit 9665550002
27 changed files with 1359 additions and 0 deletions

21
task_1_html_css/README.md Normal file
View File

@@ -0,0 +1,21 @@
# Local Development
see [src/README.md](src/README.md)
# Local Testing
## run container for local testing
```bash
docker build -t my-webapp .
docker run -it --rm -p 5173:5173 my-webapp
```
Open a browser and connect to http://localhost:5173
## run bash in interactive container
```bash
docker build -t my-webapp src/.
docker run -it --rm -p 5173:5173 my-webapp bash
```