If you haven't already, start by downloading Node and Git
Go to the desktop or any folder, right click and select open a new Command Prompt or Terminal window. Run the following commands:
git clone https://github.com/BurakYs/VidGet.git
cd VidGet
npm i -g pnpm
cd client && pnpm install
cd ../server && pnpm install
Now you have installed all the dependencies. Close the terminal and open 2 new ones. In the first terminal, run:
cd client
pnpm launch
In the second terminal, run:
cd server
pnpm launch
Now you can click the link in the first terminal to open the website.
To update the project, run the following commands:
cd VidGet
git pull
cd client && pnpm install
cd ../server && pnpm install
Important
Do not edit any file if you don't know how to use Git.