Skip to content

nelsonfrank/chat-app

Repository files navigation

Chat app

Tech stack

This project developed using the following technology.

  • Reactjs
  • Vitejs
  • Typescript
  • Material UI
  • Redux toolkit
  • React-router
  • Jest
  • React-testing-library

Demo

  • Check live preview here

Contributing

This project welcomes contributions and suggestions.

Fetch project

Fetch project to your repository

Clone the project from the fetched repo

git clone git@github.com:{your-github-username}/chat-app.git

Change directory to project directory

cd path/to/project/chat-app

Add remotes repositories

# upstream remote
git remote add upstream git@github.com:Nelsonfrank/chat-app.git

# origin remote
git remote add orign  git clone git@github.com:{your-github-username}/chat-app.git

Always push your changes in your fetched repo

Push changes to your fetched repo and then make pull request again origin repo dev branch.

And use upstream remote to update your local repo with recent dev branch

# Update your local branch to sync with dev branch
git pull --rebase upstream dev