This todo list application is serves as a basis for technology demonstrations and playground. Currently is consists of
- a web service component based on ASP.NET Minimal APIs
- a web application component based on a React.
- Open two command line shells
- In the first shell navigate to
./todo.serviceand executedotnet run - In the second shell navigate to
./todo.app.reactand executenpm ciand thennpm run dev - Open
https://localhost:7066/todosto access the service - Open
http://localhost:3000/to access the app
- Open the VS Code workspace file (*.code-workspace)
- Execute launch configuration "Compound: Service + App"
- Two browser windows will be opened
- One for the service at
https://localhost:7066/todos - One for the app at
http://localhost:3000/
- One for the service at