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 QuickInstall CLI targets phpBB 3.2+ installer-based boards. phpBB 3.0/3.1 remain legacy-web-app territory and are not planned for the QuickInstall CLI.
When creation finishes, QuickInstall asks whether to start the board.
30
+
30
31
Open:
31
32
32
33
```text
@@ -39,7 +40,7 @@ Admin login:
39
40
admin / password
40
41
```
41
42
42
-
That is the normal workflow. `board:create` downloads the requested phpBB source if needed, writes Docker config, and prepares the board. `board:start` starts the board containers with Docker Compose, installs phpBB, applies the selected seed preset once, and waits until the board URL responds before printing the final URL.
43
+
That is the normal workflow. `board:create` downloads the requested phpBB source if needed, writes Docker config, prepares the board, and offers to start it. Starting a board starts the containers with Docker Compose, installs phpBB, applies the selected seed preset once, and waits until the board URL responds before printing the final URL.
List boards (shows all created boards and their statuses):
@@ -90,6 +86,12 @@ List boards (shows all created boards and their statuses):
90
86
php bin/qi board:list
91
87
```
92
88
89
+
Start a board:
90
+
91
+
```bash
92
+
php bin/qi board:start demo
93
+
```
94
+
93
95
Stop or remove a board:
94
96
95
97
```bash
@@ -375,10 +377,9 @@ docker compose -f .qi/runtime/demo/compose.yml logs db
375
377
376
378
#### Reset a board completely
377
379
378
-
Use this when a board's files, database, or generated Docker runtime are no longer worth repairing. Destroying a board removes its generated state, so create and start it again afterward.
380
+
Use this when a board's files, database, or generated Docker runtime are no longer worth repairing. Destroying a board removes its generated state, so create it again afterward.
0 commit comments