https://github.com/digitalillusion/test_hc
Experiments with Holochain
https://github.com/digitalillusion/test_hc
Last synced: 6 months ago
JSON representation
Experiments with Holochain
- Host: GitHub
- URL: https://github.com/digitalillusion/test_hc
- Owner: digitalillusion
- Created: 2023-05-19T02:06:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T21:23:54.000Z (almost 2 years ago)
- Last Synced: 2025-05-24T06:36:45.375Z (about 1 year ago)
- Language: Rust
- Size: 1.75 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Hc 2
## Environment Setup
> PREREQUISITE: set up the [holochain development environment](https://developer.holochain.org/docs/install/).
Enter the nix shell by running this in the root folder of the repository:
```bash
nix develop
npm install
```
**Run all the other instructions in this README from inside this nix shell, otherwise they won't work**.
## Running 2 agents
```bash
npm run start
```
This will create a network of 2 nodes connected to each other and their respective UIs.
It will also bring up the Holochain Playground for advanced introspection of the conductors.
## Running the backend tests
```bash
npm run test
```
## Bootstrapping a network
Create a custom network of nodes connected to each other and their respective UIs with:
```bash
AGENTS=3 npm run network
```
Substitute the "3" for the number of nodes that you want to bootstrap in your network.
This will also bring up the Holochain Playground for advanced introspection of the conductors.
## Packaging
To package the web happ:
``` bash
npm run package
```
You'll have the `test_hc2.webhapp` in `workdir`. This is what you should distribute so that the Holochain Launcher can install it.
You will also have its subcomponent `test_hc2.happ` in the same folder`.
## Documentation
This repository is using these tools:
- [NPM Workspaces](https://docs.npmjs.com/cli/v7/using-npm/workspaces/): npm v7's built-in monorepo capabilities.
- [hc](https://github.com/holochain/holochain/tree/develop/crates/hc): Holochain CLI to easily manage Holochain development instances.
- [@holochain/tryorama](https://www.npmjs.com/package/@holochain/tryorama): test framework.
- [@holochain/client](https://www.npmjs.com/package/@holochain/client): client library to connect to Holochain from the UI.
- [@holochain-playground/cli](https://www.npmjs.com/package/@holochain-playground/cli): introspection tooling to understand what's going on in the Holochain nodes.