Skip to content

TeletalkHQ/teletalk-client-web

Repository files navigation

Teletalk messenger client (web)

Gitter

Technical details

The app is based on the ReactJS JavaScript framework. Try it here.

Running locally

  1. Install node.js & npm. Probably, you should use nvm.

  2. Install dependencies.

npm install
  1. Run the app in development mode.
npm run dev

Open http://localhost:3000 to view it in the browser.

  1. Generate a production build of your app and deploy it to GitHub Pages.
npm run pre-deploy
npm run deploy

References

  1. Deploying a React App (created using create-react-app) to GitHub Pages
  2. Facebook's tutorial on deploying a React app to GitHub Pages