Files
fundamentals-of-webengineering/task_3_react
2025-11-16 18:22:03 +01:00
..
2025-11-15 22:41:26 +01:00
2025-11-16 18:22:03 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00
2025-11-15 22:41:26 +01:00

Local Development

Only change files inside the src directory.

Client side

All client side files are located in the src/client directory.

Server side

All server side files are located in the src/server directory.

Local Testing

run container for local testing

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

docker build -t my-webapp src/.

docker run -it --rm -p 5173:5173 my-webapp bash