Create .env file in the root directory :
cp .env.example .env
or
copy .env.example .env
Fill the .env file with the following :
REACT_APP_HOST_DEV=<YOUR_HOST> # http://localhost:<PORT>/api/v1
REACT_APP_HOST_IMAGE_DEV=<YOUR_IMAGE_HOST> # http://localhost:<PORT>
Then, run the following command to install the dependencies :
npm install
Run the following command to start the server :
npm run dev