Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 597 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 597 Bytes

Spring Angular Frontend Server

Starting template to serve angular application using spring boot server.

Running the application in local machine

./mvnw spring-boot:run

If you want to run the application in debug mode, do the following:

  1. Build angular application

    ./mvnw generate-resources

    OR

    cd ./client && ./npm run watch

    The above command will keep watching for changes in angular app source code and will rebuild the app for development environment.

  2. Run the spring-boot application in debug mode using IDE.