-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweave.dev.config.ts
124 lines (123 loc) · 2.91 KB
/
weave.dev.config.ts
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import { defineConfig } from "@theweave/cli";
export default defineConfig({
toolCurations: [],
groups: [
{
name: "Tennis Club",
networkSeed: "098rc1m-09384u-crm-29384u-cmkj",
icon: {
type: "filesystem",
path: "./ui/tennis_club.png",
},
creatingAgent: {
agentIdx: 1,
agentProfile: {
nickname: "Gaston",
avatar: {
type: "filesystem",
path: "./ui/gaston.jpeg",
},
},
},
joiningAgents: [
{
agentIdx: 2,
agentProfile: {
nickname: "Marsupilami",
avatar: {
type: "filesystem",
path: "./ui/marsupilami.jpeg",
},
},
},
{
agentIdx: 3,
agentProfile: {
nickname: "Marsupilami Nr. 2",
avatar: {
type: "filesystem",
path: "./ui/marsupilami.jpeg",
},
},
},
],
applets: [
{
name: "presence",
instanceName: "presence",
registeringAgent: 1,
joiningAgents: [2],
},
// {
// name: 'ZipZap',
// instanceName: 'ZipZap',
// registeringAgent: 1,
// joiningAgents: [2],
// },
{
name: 'KanDo',
instanceName: 'KanDo',
registeringAgent: 1,
joiningAgents: [2],
},
],
},
],
applets: [
{
name: "presence",
subtitle: "video calls",
description:
"Be present.",
icon: {
type: "filesystem",
path: "./ui/icon.png",
},
source: {
type: "localhost",
happPath: "/home/matthias/code/holochain/matthme/presence/workdir/presence.happ",
uiPort: 8888,
},
},
{
name: "presence webhapp",
subtitle: "video calls",
description:
"Be present.",
icon: {
type: "filesystem",
path: "./ui/icon.png",
},
source: {
type: "filesystem",
path: "/home/matthias/code/holochain/matthme/presence/workdir/presence.webhapp",
},
},
{
name: 'KanDo',
subtitle: 'KanBan board on Holochain',
description: 'KanBan board',
icon: {
type: 'https',
url: 'https://theweave.social/images/kando_icon.png',
},
source: {
type: 'https',
url: 'https://github.com/holochain-apps/kando/releases/download/v0.12.0-rc.1/kando.webhapp',
},
},
{
name: 'ZipZap',
subtitle: 'Ephemeral direct messaging',
description: 'Ephemeral direct messaging',
icon: {
type: 'https',
url: 'https://lightningrodlabs.org/projects/notebooks.png',
},
source: {
type: 'https',
url: 'https://github.com/lightningrodlabs/zipzap/releases/download/v0.1.3/zipzap.webhapp',
},
},
],
});