26 lines
396 B
Markdown
26 lines
396 B
Markdown
# griddriver
|
|
|
|
To use the installer:
|
|
|
|
```vlang
|
|
import freeflowuniverse.herolib.installers.threefold.griddriver
|
|
|
|
fn main() {
|
|
mut installer := griddriver.get()!
|
|
installer.install()!
|
|
}
|
|
```
|
|
|
|
## example heroscript
|
|
|
|
```hero
|
|
!!griddriver.install
|
|
homedir: '/home/user/griddriver'
|
|
username: 'admin'
|
|
password: 'secretpassword'
|
|
title: 'Some Title'
|
|
host: 'localhost'
|
|
port: 8888
|
|
|
|
```
|