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
The installer supports a non-interactive mode for CI pipelines and AI agents. It activates automatically when stdout is not a TTY, or explicitly with the `--ni` flag.
23
+
24
+
### Discover available features
25
+
26
+
```shell
27
+
pnpm dlx dappbooster --info
28
+
```
29
+
30
+
```json
31
+
{
32
+
"features": {
33
+
"demo": {
34
+
"description": "Component demos and example pages",
35
+
"default": true
36
+
},
37
+
"subgraph": {
38
+
"description": "TheGraph subgraph integration",
39
+
"default": true,
40
+
"postInstall": [
41
+
"Provide your own API key for PUBLIC_SUBGRAPHS_API_KEY in .env.local",
42
+
"Run pnpm subgraph-codegen from the project folder"
43
+
]
44
+
},
45
+
"typedoc": {
46
+
"description": "TypeDoc API documentation generation",
47
+
"default": true
48
+
},
49
+
"vocs": {
50
+
"description": "Vocs documentation site",
51
+
"default": true
52
+
},
53
+
"husky": {
54
+
"description": "Git hooks with Husky, lint-staged, and commitlint",
55
+
"default": true
56
+
}
57
+
},
58
+
"modes": {
59
+
"full": "Install all features",
60
+
"custom": "Choose features individually"
61
+
}
62
+
}
63
+
```
64
+
65
+
### Full install
66
+
67
+
```shell
68
+
pnpm dlx dappbooster --ni --name my_dapp --mode full
0 commit comments