image

Steps to run this project on your local system

Step 1:Fork

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

Step 2:Branch

To keep your development environment organized, create local branches to hold your work. These should be branched directly off of the main branch.
git checkout -b my-branch -t upstream/main
git remote add upstream https://github.com/akshatnema/jobie-telegram-scrapper.git
git fetch upstream

Step 3:Build

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

Step 5:Start Developing

Run the following command to start this project in system

npm run dev

Your site will be hosted locally at: http://localhost:8000/

Step 6:Commit

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"

Push

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: