Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 2.08 KB

README.md

File metadata and controls

44 lines (33 loc) · 2.08 KB

Basic CRUD App with Angular 7.0 and Spring Boot 2.0

This example app shows how to build a basic CRUD app with Spring Boot 2.0, GraphQL, SPQR, Apollo Client and Angular 7.0.

Prerequisites: Java 8 and Node.js.

Getting Started

To install this example application, run the following commands:

git clone https://github.com/iguissouma/spring-graphql-apollo-angular.git
cd spring-graphql-apollo-angular

This will get a copy of the project installed locally. To install all of its dependencies and start each app, follow the instructions below.

To run the server, cd into the server folder and run:

./mvnw spring-boot:run

To run the client, cd into the frontend folder and run:

npm install && npm start

Resources