Skip to content

wxlfe/corinth-code-challenge

Repository files navigation

Corinth Code Challenge

This is a Next.js frontend for the SWAPI API, providing a searchable list of Star Wars characters.

Netlify

A live version of the project is available at corinth-code-challenge.netlify.app.

Build

Building follows a normal Next.js process. First, run

npm i

or

yarn

then build to a dev server or a production build.

Dev Server

npm run dev

or

yarn dev

Build

npm run build

or

yarn build

Test Using Jest

Jest is available for running tests via

npm run test

or

yarn test