Fork the project on Github and clone your fork locally to your system.
Using SSH:
git clone git@github.com:<your_username>/jobie-telegram-scrapper.git
OR
Using HTTPS:
git clone https://github.com/<your_username>/jobie-telegram-scrapper.git
Then navigate to JobIE
cd jobie-telegram-scrapper
git checkout -b my-branch -t upstream/main
git remote add upstream https://github.com/akshatnema/jobie-telegram-scrapper.git
git fetch upstream
Now we are ready to build the project , but first of all make sure that you have NodeJS installed in your system.
Inside the folder, run the following commands to install all the dependencies.
npm install
Run the following command to start this project in system
npm run dev
Your site will be hosted locally at: http://localhost:8000/
It is recommended to keep your changes grouped logically within individual commits. Commits are a great way to help your fellow contributors keep check of the changes you made to the project.
git add my/changed/file
git commit -m "changes-made"
Once your commits are ready to go begin the process of opening a pull request by pushing your working branch to your fork on GitHub.
git push origin my-branch
🎉 Enjoy!! Your work is done. Go and upload your amazing PR now..:+1: