Dockerized project, solved dotnet issue, UI testing next.

The current state of the project is that I've given up on trying to set up Firecracker and moved to a simple solution of running the code inside Docker. I will build the product using Docker and worry about scaling and security later.

I'm trying to run code inside my docker container, but can't get get the dotnet command to work. I've installed dotnet using instructions from the Microsoft docs, but the PATH doesn't seem to be configured.

exec: "dotnet": executable file not found in $PATH

I've found new instructions, and now it works flawlessly.

I've managed to set up a test environment for a user and run the tests by hitting the endpoint. I now have to be able to update files, and have the output of the test be sent back as the response. Once I've done that, I will switch to testing using the UI.

All done, I can switch to the UI now. It's been a while since I've worked on it and I'm very excited.

Set up CORS, done some refactoring. I can see output in the UI (error), and that's where I'll wrap things up.

Tomorrow, I need to organize the test project into different files and get it to run properly