An Angular app example with authentication using GraphQL communication (Apollo), backend built on node platform.
Step by step, how to get an app running.
- Required: Node 9, NPM 6, Angular CLI 6
- Clone project to your path
git clone https://github.com/boski-src/angular-graphql-auth-app-example.git <ProjectName> - Go to project dir
cd <ProjectName> - Install client packages (in client dir)
npm install - Install server packages (in server dir)
npm install - Update configuration file settings.json
- Run client (for development)
ng serve - Run server (for development)
npm run dev