Skip to content

Installation

PhlexPlexico edited this page Oct 26, 2020 · 2 revisions

In order to get this up and running on a fresh install, we first need to acquire some dependencies. If you've already installed G5API, you're halfway there if you have Node setup.

First step is to add vue-cli-service:

yarn global add @vue/cli

Attempt to try using vue on the command line by entering

vue

If nothing is found, you will need to edit your PATH. Open ~/.bashrc in your favourite text editor, and add the following to the end:
export PATH="/home/YOURUSER/.yarn/bin:$PATH" where YOURUSER is your folder.

Once that's done, clone the project to your server.

git clone https://github.com/PhlexPlexico/G5V.git

Enter into that directory, then run:

yarn
yarn build

This will build a production ready build, which you can now use your preferred web server to run it!

Clone this wiki locally