Cloning from GitHub - VisBOL/visbol2 GitHub Wiki

In some cases, developers may want to make changes VisBOL's code. In order to do this, developers can clone VisBOL's repository on GitHub. The following steps provide instruction for cloning the repository.

  1. Make sure you have git installed, along with either the npm or yarn package manager.
  2. Copy the repository's address - https://github.com/VisBOL/visbol2.git
  3. In your computer's terminal, run git clone https://github.com/VisBOL/visbol2.git in the directory you would like the VisBOL clone to reside.
  4. Install dependencies in the back-end.
  1. Navigate into the back-end directory: cd backend
  2. Run npm i if you're using npm. Run yarn install if you're using yarn.
  1. Install dependencies in the front-end.
  1. Navigate into the front-end directory: cd ../frontend
  2. Run npm i if you're using npm. Run yarn install if you're using yarn.

You now can edit and use your VisBOL clone! For instructions on using VisBOL, visit this documentation.