Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.18 KB

README.md

File metadata and controls

49 lines (31 loc) · 1.18 KB

Messenger · CircleCI

This is a POC for simple messenger font-end app.

Demo Animation

Implemented with React, Redux, Next.JS and Ant Design.

Visit the demo page to see it working.

Install

Clone the repo and install the app dependencies with

git clone git@github.com:gztomas/messenger.git
cd messenger
npm install

You can then start the server locally with the following command

npm run build
npm start

Then just open your browser at http://localhost:3000 For demo purposes, you will see a split screen app.

Development

A webpack-based dev environment which supports hot module replacement can be started with

npm run dev

Tests

Tests are missing for the most cases, but you can check the contact info component for an example of a tested component.

They are being triggered by the CI build.

For running them locally just do

npm test