However, IPFS is still in alpha, (especially IPNS) and is not yet suitable for production. I'd like to implement a simple static site on the aforementioned subdomain that hosts links to hashes on https://ipfs.io.
My initial thought is running a build script that appends hashes to a JSON file, perhaps called contents.json. Then it will take the output from the JSON, maybe using jq, and produce a single page (index.html) or a set of folders with pages, like 2017/01/23/index.html and so on.
And, of course, there should be an about page. I'd prefer it to be separate from the index as its own file.
I'd like to add full support for IPFS/IPNS on my subdomain https://ipfs.citrusui.me.
However, IPFS is still in alpha, (especially IPNS) and is not yet suitable for production. I'd like to implement a simple static site on the aforementioned subdomain that hosts links to hashes on https://ipfs.io.
My initial thought is running a build script that appends hashes to a JSON file, perhaps called
contents.json
. Then it will take the output from the JSON, maybe using jq, and produce a single page (index.html) or a set of folders with pages, like2017/01/23/index.html
and so on.And, of course, there should be an about page. I'd prefer it to be separate from the index as its own file.