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
- Host: GitHub
- URL: https://github.com/himujjal/whatsapp-clone-back-end
- Owner: Himujjal
- Created: 2021-06-12T07:00:52.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T07:25:32.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T11:37:17.195Z (4 months ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Whatsapp-clone Back-end
Written in TypeScript. Visit https://whatsapp-clone-simple.netlify.app for
the front-endThe 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
```