Nest Filter

Installation

$ npm install
# or
$ yarn install

Change api to local server

# Go to client/pages/api/client.ts
  const apiClient = create({ baseURL: process.env.NEXT_PUBLIC_URI });
# Just copy this line
  const apiClient = create({ baseURL: "http://localhost:5000" });

Running the app

# Make sure you are in the server directory.
- cd server
# Just copy this line
# In npm
  npm run dev
# In yarn
  yarn dev

Stay in touch