Zoom clone
Clone of Zoom for study purposes.
Deployed here
Technologies | Getting started | How to contribute |
🚀 Technologies
Technologies that I used to develop this Zoom’s clone:
💻 Getting started
Clone the project and access the folder
1 |
$ git clone https://github.com/kaioosilva/zoom-clone.git <span class="pl-k">&&</span> <span class="pl-c1">cd</span> zoom-clone |
Follow the steps below
1 2 3 4 5 |
<span class="pl-c"># Install the dependencies of peer-server</span> $ <span class="pl-c1">cd</span> peer-server <span class="pl-k">&&</span> yarn install <span class="pl-c"># Start the peer-server</span> $ yarn dev |
1 2 3 4 5 |
<span class="pl-c"># Install the dependencies of server</span> $ <span class="pl-c1">cd</span> server <span class="pl-k">&&</span> yarn install <span class="pl-c"># Start the server</span> $ yarn start |
1 2 3 4 5 |
<span class="pl-c"># Install the dependencies web client</span> $ <span class="pl-c1">cd</span> public <span class="pl-k">&&</span> yarn install <span class="pl-c"># Start the server</span> $ yarn start |
🤔 How to contribute
Make a fork of this repository
1 2 3 4 |
<span class="pl-c"># Fork using GitHub official command line</span> <span class="pl-c"># If you don't have the GitHub CLI, use the web site to do that.</span> $ gh repo fork kaioosilva/zoom-clone |
Follow the steps below
1 2 3 4 5 6 7 8 9 10 11 |
<span class="pl-c"># Clone your fork</span> $ git clone your-fork-url <span class="pl-k">&&</span> <span class="pl-c1">cd</span> zoom-clone <span class="pl-c"># Create a branch with your feature</span> $ git checkout -b my-feature <span class="pl-c"># Make the commit with your changes</span> $ git commit -m <span class="pl-s"><span class="pl-pds">'</span>feat: My new feature<span class="pl-pds">'</span></span> <span class="pl-c"># Send the code to your remote branch</span> $ git push origin my-feature |
After your pull request is merged, you can delete your branch