Locations app with Spring Boot and Angular
-
Java - 12.x
-
Maven - 3.x.x
-
MongoDB - local database (host: localhost:27017, database: test)
1. Clone the application
git clone https://github.com/asazic/locations-demo-app.git
2. Build and run the backend app using maven
cd demo
mvn package
java -jar target/demo-0.0.1-SNAPSHOT.jar
Alternatively, you can run the app without packaging it using -
mvn spring-boot:run
3. Run the frontend app using npm
cd client-app
npm install
ng serve --open
Frontend server will run on http://localhost:4200