Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 646 Bytes

README.md

File metadata and controls

31 lines (27 loc) · 646 Bytes

Pokédex

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.

Prerequisites

Setup

  1. Clone the repository.
  2. Install dependencies:
    cd /path/to/cloned/pokedex/
    cd api/
    npm install
    cd ../app/
    npm install

Run

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.