This repository is a template for a Pokédex application. It contains a server-side REST API built using NestJS and a client-side single-page application built in Angular.
- Clone the repository.
- Install dependencies:
cd /path/to/cloned/pokedex/ cd api/ npm install cd ../app/ npm install
In two separate shells, start the API and app:
cd api/
npm run start
cd app/
npm run start
Both the API and app will rebuild as changes are made to them.