1 | # @vtt-kit/droplet
|
2 |
|
3 | This tool allows easing the FoundryVTT launch on a virtual server.
|
4 |
|
5 | ## Launch on Ubuntu
|
6 |
|
7 | ```bash
|
8 | apt-get install make unzip
|
9 | git clone <%REPO_LINK%> droplet
|
10 | make -C droplet setup foundry
|
11 |
|
12 | . ~/.nvm/nvm.sh
|
13 | # You have to make `nvm` visible for the current sheel via ^ launch or by shell' relaunch.
|
14 | make -C droplet launch
|
15 | ```
|
16 |
|
17 | To run already installed VTT use just `launch`, e.g. `make -C droplet launch`.
|
18 |
|
19 | ## Customize directory
|
20 |
|
21 | Tool will use `/root` dir by default. Use `CDIR` variable to change this, e.g. `CDIR=$(pwd) make ..`
|
22 |
|
23 | ## License
|
24 | MIT
|