Usage

Installation

To use Restro app

  1. Clone the repositories from the provided links.

$ git clone https://github.com/DHIRAJJADHAV17/restroSearch_frontend
$ git clone https://github.com/DHIRAJJADHAV17/restroSearch_backend
  1. Install dependencies using npm or yarn.

$ cd restroSearch_frontend
$ npm install
$ cd ../restroSearch_backend
$ npm install
  1. Set up environment variables using a .env file.

$ touch .env
$ echo "REACT_APP_API_URL=http://localhost:5000" >> .env
  1. Run the development server using npm run dev or equivalent.

$ cd restroSearch_frontend
$ npm run dev
$ cd ../restroSearch_backend
$ npm run dev