Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Latest commit

 

History

History
45 lines (31 loc) · 916 Bytes

self-hosting.md

File metadata and controls

45 lines (31 loc) · 916 Bytes

Self Hosting VidGet

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.

Staying Updated

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.