Hello IPFS community,
I am working on a project using IPFS. It is a fairly simple website containing material related to a series of (art) exhibitions. Using IPFS in this case is more a conceptual choice, to draw attention to alternative/new ways of distributing digital content, than a absolute practical necessity. The frontend is a SPA that pulls the content from IPFS.
Getting the actual content (text, images, audio, video) onto IPFS is not that complicated. My question concerns how to link the pieces of content together.
The structure I have in mind is something like this:
Index => Exhibition => Work
Where Index
is a single object while Exhibitions
and Work
are multiples. So, a tree.
What would be the IPFS way of doing this?
I have looked into using IPDB or orbit-db, but I would prefer to keep it as simple as possible.
I am thinking to use JSON documents with links.
Is IPLD applicable to this?
Thankful for any pointers!