/technical-interview

WhereWeGo senior developer technical task

Primary LanguageTypeScript

WhereWeGo Senior Dev Technical Interview

This mono repository contains a NextJS application and a NestJS API.

Getting Started

Follow the instructions below to run each project locally.

Prerequisites

  • Node.js
  • yarn

Installation

  1. Clone the repository to your local machine:

    git clone https://github.com/Oxbow-Education/technical-interview.git
    
  2. Navigate to the 'client' folder:

    cd client
    
  3. Install the dependencies

    yarn
    
  4. Navigate to the 'api' folder

    cd api
    
  5. Install the dependencies

    yarn
    

Running the NextJS Application

  1. In the 'client' folder, start the development server:

    yarn dev
    
  2. Open your browser and visit http://localhost:3000 to access the NextJS application.

Running the NestJS API

  1. In the 'api' folder, start the server:

    yarn start
    
  2. The API will be running at http://localhost:8000