You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each JSON file is the same data shape that Taskade's internal `SpaceBundleData` uses. You can:
@@ -120,7 +123,23 @@ Each JSON file is the same data shape that Taskade's internal `SpaceBundleData`
120
123
}
121
124
```
122
125
123
-
4. Run `npm run build` to assemble and validate.
126
+
4.**Add a Genesis app**: Create `apps/my-app.json` with a `FileSystemTree`:
127
+
```json
128
+
{
129
+
"src": {
130
+
"directory": {
131
+
"App.tsx": {
132
+
"file": {
133
+
"contents": "import * as React from 'react';\nexport default function App() {\n return <div>Hello World</div>;\n}\n"
134
+
}
135
+
}
136
+
}
137
+
}
138
+
}
139
+
```
140
+
The file system tree mirrors the Parade base template structure. Each file node has `{ file: { contents: "..." } }` and directories use `{ directory: { ... } }`.
0 commit comments