-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathweave.dev.config.ts
More file actions
85 lines (84 loc) · 2.02 KB
/
Copy pathweave.dev.config.ts
File metadata and controls
85 lines (84 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { defineConfig } from '@theweave/cli'
export default defineConfig({
toolCurations: [
{
url: 'https://raw.githubusercontent.com/lightningrodlabs/weave-tool-curation/refs/heads/test-0.13/0.13/lists/curations-0.13.json',
useLists: ['default'],
},
],
groups: [
{
name: 'Lightning Rod Labs',
networkSeed: '098rc1m-09384u-crm-29384u-cmkj',
icon: {
type: 'filesystem',
path: './icons/lrl-icon.png',
},
creatingAgent: {
agentIdx: 1,
agentProfile: {
nickname: 'Zippy',
avatar: {
type: 'filesystem',
path: './icons/zippy.jpg',
},
},
},
joiningAgents: [
{
agentIdx: 2,
agentProfile: {
nickname: 'Zerbina',
avatar: {
type: 'filesystem',
path: './icons/zerbina.jpg',
},
},
},
],
applets: [
{
name: 'Acorn Hot Reload',
instanceName: 'Acorn Hot Reload',
registeringAgent: 1,
joiningAgents: [2],
},
{
name: 'kando',
instanceName: 'kando',
registeringAgent: 1,
joiningAgents: [2],
},
],
},
],
applets: [
{
name: 'Acorn Hot Reload',
subtitle: 'Acorn',
description: 'State of affairs trees!',
icon: {
type: 'filesystem',
path: './icons/acorn-app-icon-512px.png',
},
source: {
type: 'localhost',
happPath: './happs/happ/workdir/acorn.happ',
uiPort: 8081,
},
},
{
name: 'kando',
subtitle: 'kanban boards',
description: 'Real-time kanban based on syn',
icon: {
type: 'https',
url: 'https://raw.githubusercontent.com/holochain-apps/kando/main/we_dev/kando_icon.png',
},
source: {
type: 'https',
url: 'https://github.com/holochain-apps/kando/releases/download/v0.13.0-rc.0/kando.webhapp',
},
},
],
})