Files
herolib/lib/installers/web/bun
Mahmoud-Emad ecdc8f4a2a feat: Add heroscript serialization/deserialization functions
- Add heroscript_dumps and heroscript_loads functions
- Replace paramsparser with encoderhero import
- Add ulist_get and upload functions to docker installer
- Add ulist_get and upload functions to zola installer
2025-10-13 22:25:18 +03:00
..
2025-02-02 19:24:10 +03:00

bun

To get started



import incubaid.herolib.installers.something.bun as bun_installer

heroscript:="
!!bun.configure name:'test'
    password: '1234'
    port: 7701

!!bun.start name:'test' reset:1 
"

bun_installer.play(heroscript=heroscript)!

//or we can call the default and do a start with reset
//mut installer:= bun_installer.get()!
//installer.start(reset:true)!




example heroscript

!!bun.configure
    homedir: '/home/user/bun'
    username: 'admin'
    password: 'secretpassword'
    title: 'Some Title'
    host: 'localhost'
    port: 8888