@@ -30,19 +30,33 @@ containers:
30
30
- [creativecommons/chooser][gh-chooser]
31
31
- [creativecommons/faq][gh-faq]
32
32
- [creativecommons/mp][gh-mp]
33
- 1 . Create the `.env` file:
33
+ 2 . Create the `.env` file:
34
34
```shell
35
35
cp .env.example .env
36
36
```
37
- 2 . Update `.env` to set desired values for variables (`WP_VERSION`,
37
+ 3 . Update `.env` to set desired values for variables (`WP_VERSION`,
38
38
`WP_MOD_TYPE`, `WP_MOD_NAME`, etc.)
39
- 3 . Build/start Docker:
39
+ 4 . Build/start Docker:
40
40
```shell
41
41
docker compose up
42
42
```
43
- 4. Wait for build and initialization to complete
44
- 5. Install WordPress initially through the GUI.
45
- - **TODO:** Script help here
43
+ 5. Wait for build and initialization to complete
44
+ 6. Install WordPress initially through the GUI.
45
+ - **TODO:** Script help here
46
+ 7. Install WordPress plugins/themes managed through Composer:
47
+ ```shell
48
+ composer install
49
+ ```
50
+ 8. Activate all installed plugins, excluding `wordfence`
51
+ ```shell
52
+ wp plugin activate --all --exclude=wordfence
53
+ ```
54
+ 9. Activate `vocabulary-theme`
55
+ ```shell
56
+ wp theme activate vocabulary-theme
57
+ ```
58
+ 10. Optionally: manually activate/configure `wordfence` in the GUI for now.
59
+ - **TODO:** Script help here
46
60
47
61
[gh-cc-legal-tools-data]: https://github.com/creativecommons/cc-legal-tools-data
48
62
[gh-chooser]: https://github.com/creativecommons/chooser
@@ -73,10 +87,27 @@ containers:
73
87
74
88
| Name | Version |
75
89
| -------------------------------------------------------- | -------- |
76
- | [Advanced Custom Fields][adv-custom-fields] | `^1.6` |
77
- | [Advanced Custom Fields: Menu Chooser][acf-menu-chooser] | `v1.1.0` |
78
- | [Classic Editor][classic-editor] | `^6.1` |
90
+ | [Advanced Custom Fields][adv-custom-fields] | `6.1` |
91
+ | [Advanced Custom Fields: Menu Chooser][acf-menu-chooser] | `1.1.0` |
92
+ | [Classic Editor][classic-editor] | `1.6` |
93
+ | [Redirection][redirection] | `4.8` |
94
+ | [Tablepress][tablepress] | `1.12` |
95
+ | [Wordfence][wordfence] | `7.10.3` |
96
+
79
97
80
98
[adv-custom-fields]: https://wordpress.org/plugins/advanced-custom-fields/
81
99
[acf-menu-chooser]: https://github.com/reyhoun/acf-menu-chooser
82
100
[classic-editor]: https://wordpress.org/plugins/classic-editor/
101
+ [redirection]: https://wordpress.org/plugins/redirection/
102
+ [tablepress]: https://wordpress.org/plugins/tablepress/
103
+ [wordfence]: https://wordpress.org/plugins/wordfence/
104
+
105
+
106
+ ## Themes
107
+
108
+ | Name | Version |
109
+ | -------------------------------------------------------- | -------- |
110
+ | [Vocabulary Theme][vocabulary-theme] | `0.1.0` |
111
+
112
+
113
+ [vocabulary-theme]: https://github.com/creativecommons/vocabulary-theme
0 commit comments