<aside> ๐Ÿ’ก How to get project running locally && frequently used commands

</aside>

Adding packages

yarn install

//or simply:

yarn

// adding dependencies
yarn add name

// or devDependencies
yarn add name -D

.env variables

React

VARIABLE=

๐Ÿšš Run Locally

First, make sure that all packages are installed.

In the NextJs app directory, run:

yarn dev

๐Ÿงช Testing

To run test in the applications, simply use the following command:

yarn test

//or

yarn test:watch
// will listen for file updates and rerun test automatically

Linting code

Run eslint check and fix files

yarn lint --fix