Usage ===== .. _installation: Installation ------------ To use Restro app 1. Clone the repositories from the provided links. .. code-block:: console $ git clone https://github.com/DHIRAJJADHAV17/restroSearch_frontend $ git clone https://github.com/DHIRAJJADHAV17/restroSearch_backend 2. Install dependencies using `npm` or `yarn`. .. code-block:: console $ cd restroSearch_frontend $ npm install $ cd ../restroSearch_backend $ npm install 3. Set up environment variables using a `.env` file. .. code-block:: console $ touch .env $ echo "REACT_APP_API_URL=http://localhost:5000" >> .env 4. Run the development server using `npm run dev` or equivalent. .. code-block:: console $ cd restroSearch_frontend $ npm run dev $ cd ../restroSearch_backend $ npm run dev