Files
herolib/lib/apps/biz/cryptpad/readme.md
2025-10-29 12:09:53 +04:00

629 B

cryptpad

To get started



import incubaid.herolib.installers.something.cryptpad as cryptpad_installer

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

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

cryptpad_installer.play(heroscript=heroscript)!

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




example heroscript

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