holochain / holoscape

A complete end-user deployment of a Holochain conductor with UI for administration and a run-time for hApp UIs
63 stars 8 forks source link

Install a DHT with no UI #62

Closed philipbeadle closed 4 years ago

philipbeadle commented 4 years ago

How do I write a bundle file to just install a DHT.

bridges = []

[[instances]]
name = "notes"
id = "__notes"
dna_hash = "QmQRKZdTk6NSW5eg8UaSwcJCKgu9pHEcHhezM5yc9vtcZa"
uri = "file:./dna/dist/dna.dna.json"

The install button never enables.

lucksus commented 4 years ago

You will have to declare the UIs array as empty, similar to bridges in the first line. So add a line with: UIs=[]

philipbeadle commented 4 years ago

Thanx Nico.