From dbb573b8a158afe1750f4b236d57166148868ce6 Mon Sep 17 00:00:00 2001 From: Paul d'Aoust Date: Thu, 23 Jan 2025 09:20:38 -0800 Subject: [PATCH] add bibliography to hApps page --- src/pages/build/happs.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/pages/build/happs.md b/src/pages/build/happs.md index c42f717e4..61e53bd75 100644 --- a/src/pages/build/happs.md +++ b/src/pages/build/happs.md @@ -151,4 +151,15 @@ Your hApp is now ready to be distributed to people who run [Holochain Launcher]( If you want to package a hApp as a standalone binary, along with the Holochain core library, you've got two options. * If you would like to use Electron and **only need to support Windows, macOS, and Linux**, the [`holochain/kangaroo-electron`](https://github.com/holochain/kangaroo-electron/) repo gives you a template to get started. Read the repo's readme for instructions. -* If you **also need to support Android** along with the desktop OSes, darksoil studio's [p2p Shipyard](https://darksoil.studio/p2p-shipyard/) tool packages your web hApp into cross-platform binaries. (Note that p2p Shipyard is currently 'source-available' and they're raising funds to open-source it and cover development costs.) \ No newline at end of file +* If you **also need to support Android** along with the desktop OSes, darksoil studio's [p2p Shipyard](https://darksoil.studio/p2p-shipyard/) tool packages your web hApp into cross-platform binaries. (Note that p2p Shipyard is currently 'source-available' and they're raising funds to open-source it and cover development costs.) + +## Reference + +* [`holochain_types::app::AppManifestCurrent`](https://docs.rs/holochain_types/latest/holochain_types/app/struct.AppManifestCurrent.html), the underlying type that the hApp manifest gets parsed into. It has a lot of good documentation on the manifest format. +* [`holochain_types::app:WebAppManifestCurrent`](https://docs.rs/holochain_types/latest/holochain_types/web_app/struct.WebAppManifestCurrent.html), for the web app manifest format. + +## Further reading + +* [Core Concepts: Application Architecture](/concepts/2_application_architecture/) +* [Build Guide: DNAs](/build/dnas/) +* [Build Guide: Zomes](/build/zomes/) \ No newline at end of file