|
|
|
## Getting Started
|
|
|
|
|
|
|
|
- Install the latest version of Git [[Windows](https://git-scm.com/download/win)]
|
|
|
|
- Install a suitable version of Node.js [[Windows](https://nodejs.org/dist/v10.15.1/node-v10.15.1-x64.msi)]
|
|
|
|
- Ensure npm is installed after installing Node, make sure the Node bin folder is on your `PATH`.
|
|
|
|
|
|
|
|
## Installing lvt
|
|
|
|
|
|
|
|
lvt is the primary utility for managing projects and setting up packages.
|
|
|
|
|
|
|
|
To install simply run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
npm i -g lvt
|
|
|
|
```
|
|
|
|
|
|
|
|
Afterwards create a new directory suitable for containing all the engine files and packages and add it to your path as `LVT_ROOT`.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Windows
|
|
|
|
setx LVT_ROOT "C:\path\to\root"
|
|
|
|
|
|
|
|
# Linux (you will need to place the following in a suitable script which runs when you enter a new session)
|
|
|
|
export LVT_ROOT=/path/to/root
|
|
|
|
```
|
|
|
|
|
|
|
|
## Preparing engine and packages
|
|
|
|
|
|
|
|
To pull (and then update later) the engine run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
lvt pkg engine
|
|
|
|
```
|
|
|
|
|
|
|
|
And to install all the required packages:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
lvt pkg setup
|
|
|
|
```
|
|
|
|
|
|
|
|
## Using lvt
|
|
|
|
|
|
|
|
Running `lvt` will give you other possible commands available to use.
|
|
|
|
|
|
|
|
### [Continue](/guide/0.2) |
|
|
\ No newline at end of file |