An open API service indexing awesome lists of open source software.

https://github.com/himujjal/whatsapp-clone-back-end

Backend server for whatsapp-clone @ whatsapp-clone-simple.netlify.app
https://github.com/himujjal/whatsapp-clone-back-end

Last synced: 2 months ago
JSON representation

Backend server for whatsapp-clone @ whatsapp-clone-simple.netlify.app

Awesome Lists containing this project

README

        

# Whatsapp-clone Back-end

Written in TypeScript. Visit https://whatsapp-clone-simple.netlify.app for
the front-end

The BaseURL for this server: https://whatsapp-clone-simple.herokuapp.com

# To start development

Clone the repo

```sh
git clone https://github.com/Himujjal/whatsapp-clone-back-end
```

Linux/MacOS/MinGW:

```sh
cd whatsapp-clone-back-end
npm i
BASE_URL="https://localhost:9000"
npm run dev
```

Windows:

```sh
cd whatsapp-clone-back-end
npm i
set BASE_URL "https://localhost:9000"
npm run dev
```

# If you want a production build

```sh
npm run build
```

Running the production build:

```sh
npm run start
```