Deleting the no longer needed files and running the application
We’ve finished implementing the task manager frontend application functionality. However, we bootstrapped the application using the Create React App script, which added some residual files we no longer need and that we should delete. Let’s go ahead and delete the following files from the project:
src/App.css
src/logo.svg
src/InitialPage.js
Now, let’s start the application. In the Running the application section of Chapter 8, Creating the Login Page, we already went through these steps:
- Start the Quarkus backend from the project root by executing the following command:
./mvnw quarkus:dev
- In a different Terminal, and from the frontend root (
src/main/frontend
), start the React development server by executing the following command:npm start
The frontend application should start and a browser window should open automatically at http://localhost:3000
. The page should...