Skip to content

Latest commit

 

History

History
82 lines (49 loc) · 4.05 KB

README.md

File metadata and controls

82 lines (49 loc) · 4.05 KB

Frontend

This is a Next.js project bootstrapped with create-next-app.

These instructions are for frontend only. If you are just getting started with the project, or need help starting the Docker environment, see the README in the root directory.

Getting Started

Change to the frontend directory and run all commands from here:

cd frontend

Install dependencies:

npm install
# or
yarn install

If you are using Windows, configure NPM to use Git Bash when running scripts. Follow these instructions.

Note: if you run into an error such as

/police-data-trust/frontend/node_modules/husky/lib/index.js:20
        throw new Error(`.git can't be found (see ${url})`);
        ^

Error: .git can't be found

you can copy the .git/ directory in the root of the project and move it to the frontend/ and try the install again and it should succeed. try the install again and remember do not commit this .git/ you may want to delete it afterwards until figured out alternative.

Run the development server:

npm run dev
# or
yarn dev

Open http:https://localhost:3000/login in your browser to view the login page. Login using the test account [email protected] / password. You can start editing the page by modifying pages/search/index.js. The page auto-updates as you edit the file.

Testing

Once completed the steps above then to run tests: yarn test. You can use yarn watch to automatically run your tests as you edit files.

Bare minimum each incoming PR changes updating the UI must have UI snapshot tests. We expect tests only for project important logic but must reside in the tests/ directory.

Storybook

Besides testing with Jest, we also use Storybook to view UI components in isolation. Stories can be written for any visual component, and having a story for your component is a good way to show that it works. More information on how we're using it in this project can be found here.

Learn More

To learn more about Next.js, take a look at the following resources:

What's different in Next.js from regular React?

Resources