<aside> ๐ก How to get project running locally && frequently used commands
</aside>
yarn install
//or simply:
yarn
// adding dependencies
yarn add name
// or devDependencies
yarn add name -D
VARIABLE=
First, make sure that all packages are installed.
In the NextJs app directory, run:
yarn dev
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
Run eslint check and fix files
yarn lint --fix