Skip to content

ThomE2/keiko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keiko Pokemon

Prerequisites

  • NodeJS v14+ installed
  • yarn installed globally (npm install -g yarn)

Installation

Install the backend dependencies:

cd backend && yarn

Install the frontend dependencies

cd frontend && yarn

You are good to go !

Running the project

  • Open two different terminals (one for the backend and the other the frontend)
  • In the first terminal, start the backend by running:
cd backend && yarn start

Check that the backend is running by visiting: http://localhost:8000. A website should appear with some API docs.

  • In the second terminal, start the frontend by running:
cd frontend && yarn start

Check that the frontend is running by visiting: http://localhost:3000.

Development

This project supports hot reloading. Each time a file is modified in the frontend, the server will automatically reload the required code.