diff --git a/README.md b/README.md index 086842b0..a1d624a0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,48 @@ +# Build a basic version of PayTM -## Build a basic version of PayTM +## Setting up the app + +### Frontend +1. Move into the front-end directory +``` + cd frontend +``` + +2. Install all the react dependencies +- If you are using npm +``` + npm install +``` +- If you are using yarn +``` + yarn install +``` + +3. Running the react app +- If you are using npm +``` + npm run dev +``` +- If you are using yarn +``` + yarn dev +``` + +### Backend +1. Move into the back-end directory +``` + cd backend +``` +2. Install dependencies +- If you are using npm +``` + npm install +``` +- If you are using yarn +``` + yarn install +``` +3. Running the backend +``` + node index.js +```