Skip to content

VenkateshMogili/MessengerApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MessengerApp

Messenger Application using React Native and Gifted Chat and Socket.IO

Demo Screenshots

Get Started

Frontend setup

Change to mobile directory.

cd mobile

Install node packages.

npm install

Run below command to install app in emulator or mobile(make sure you already setup adb emulator Or connected to your mobile with USB and USB Debugging should be on and Allow install from unknown sources)

npm run android

Run the React Server

npm run start

Backend setup

Database setup.

1.Create a database with name messenger.

2.Import messenger.sql dump file (located in backend/db/messenger.sql) in messenger db.

3.Provide your mysql credentials in backend/db/index.js

Change to backend directory.

cd backend

Install node packages.

npm install

Run Node Server

npm start