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
A [sitectl](https://sitectl.libops.io) plugin for Drupal websites. It works with the [LibOps Drupal template](https://github.com/libops/drupal).
3
+
`sitectl-drupal` simplifies the creation and operation of repositories created using the [LibOps Drupal template](https://github.com/libops/drupal). It provides sitectl commands for Drush, development mode, config sync, login links, validation, health checks, and component-driven customization.
4
4
5
-
The docs are available at [https://sitectl.libops.io/plugins/drupal](https://sitectl.libops.io/plugins/drupal)
The template README is at https://github.com/libops/drupal.
27
+
28
+
## Basic Operations
29
+
30
+
Use [`sitectl compose`](https://sitectl.libops.io/commands/compose) to start or inspect the stack:
31
+
32
+
```bash
33
+
sitectl compose up --remove-orphans -d
34
+
```
35
+
36
+
Use [`sitectl healthcheck`](https://sitectl.libops.io/commands/healthcheck) and [`sitectl validate`](https://sitectl.libops.io/commands/validate) to check the site:
37
+
38
+
```bash
39
+
sitectl healthcheck
40
+
sitectl validate
41
+
```
42
+
43
+
Use [`sitectl image`](https://sitectl.libops.io/commands/image) for local image or build-arg overrides:
44
+
45
+
```bash
46
+
sitectl image set --tag drupal=nginx-1.30.3-php84
47
+
```
48
+
49
+
Use [`sitectl set`](https://sitectl.libops.io/commands/set) and [`sitectl converge`](https://sitectl.libops.io/commands/converge) for component changes:
50
+
51
+
```bash
52
+
sitectl set dev-mode enabled
53
+
sitectl converge
54
+
```
55
+
56
+
See the [Drupal plugin docs](https://sitectl.libops.io/plugins/drupal) for Drush, sync, ULI, and Drupal-specific workflows.
57
+
58
+
## License
59
+
60
+
`sitectl-drupal` is licensed under the MIT License.
0 commit comments