Skip to content

Commit 697e254

Browse files
authored
Merge pull request #3 from creativecommons/wp-setup-and-migration-prep
WordPress setup and migration prep
2 parents 5e8eb61 + 1a48943 commit 697e254

File tree

5 files changed

+92
-67
lines changed

5 files changed

+92
-67
lines changed

.env.example

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# WordPress variables
2-
WP_VERSION=latest
2+
WP_VERSION=latest
3+
4+
# Setup WordPress variables
5+
WP_ADMIN_EMAIL=
6+
WP_ADMIN_USER=
7+
WP_ADMIN_PASS=

.gitignore

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1+
# macOS
12
.DS_Store
2-
.env
3+
.DS_Store?
4+
._*
5+
.Spotlight-V100
6+
.Trashes
7+
Icon?
8+
ehthumbs.db
9+
Thumbs.db
10+
11+
# Editor
12+
*.sw[po]
13+
*~
14+
15+
# Local configuration
16+
.env
17+
18+
# Migration cache
19+
cache/

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ containers:
8787
8888
| Name | Version |
8989
| -------------------------------------------------------- | -------- |
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` |
90+
| [Advanced Custom Fields][adv-custom-fields] | `6.1.8` |
91+
| [Advanced Custom Fields: Menu Chooser][acf-menu-chooser] | `1.1.0` |
92+
| [Classic Editor][classic-editor] | `1.6.3` |
93+
| [Redirection][redirection] | `4.9.2` |
94+
| [Tablepress][tablepress] | `1.14` |
9595
| [Wordfence][wordfence] | `7.10.3` |
9696
9797
@@ -110,4 +110,4 @@ containers:
110110
| [Vocabulary Theme][vocabulary-theme] | `0.1.0` |
111111
112112
113-
[vocabulary-theme]: https://github.com/creativecommons/vocabulary-theme
113+
[vocabulary-theme]: https://github.com/creativecommons/vocabulary-theme

config/composer/composer.json

+45-42
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,50 @@
11
{
2-
"repositories":[
3-
{
4-
"type":"composer",
5-
"url":"https://wpackagist.org"
6-
},
7-
{
8-
"type": "package",
9-
"package": {
10-
"name": "creativecommons/vocabulary-theme",
11-
"version": "0.1",
12-
"type": "wordpress-theme",
13-
"dist": {
14-
"type": "zip",
15-
"url": "https://github.com/creativecommons/vocabulary-theme/archive/refs/tags/v.0.1.0.zip"
16-
}
17-
}
2+
"config": {
3+
"allow-plugins": {
4+
"composer/installers": true
5+
}
6+
},
7+
"description": "CreativeCommons.org Local Dev WordPress site via Composer",
8+
"license": "GPL-2.0-or-later",
9+
"name": "creativecommons/creativecommons-org-local-dev",
10+
"repositories": [
11+
{
12+
"type": "composer",
13+
"url": "https://wpackagist.org"
14+
},
15+
{
16+
"package": {
17+
"dist": {
18+
"type": "zip",
19+
"url": "https://github.com/creativecommons/vocabulary-theme/archive/refs/tags/v.0.1.0.zip"
1820
},
19-
{
20-
"type": "package",
21-
"package": {
22-
"name": "reyhoun/acf-menu-chooser",
23-
"version": "1.1",
24-
"type": "wordpress-plugin",
25-
"dist": {
26-
"type": "zip",
27-
"url": "https://github.com/reyhoun/acf-menu-chooser/archive/refs/tags/v1.1.0.zip"
28-
}
29-
}
30-
}
31-
],
32-
"require": {
33-
"creativecommons/vocabulary-theme": "0.1",
34-
"reyhoun/acf-menu-chooser": "1.1",
35-
"wpackagist-plugin/classic-editor": "1.6",
36-
"wpackagist-plugin/advanced-custom-fields": "6.1",
37-
"wpackagist-plugin/redirection": "4.8",
38-
"wpackagist-plugin/tablepress": "1.12",
39-
"wpackagist-plugin/wordfence": "7.10.3",
40-
"wpackagist-theme/twentytwentythree": "1.1"
21+
"name": "creativecommons/vocabulary-theme",
22+
"type": "wordpress-theme",
23+
"version": "0.1.0"
24+
},
25+
"type": "package"
4126
},
42-
"config": {
43-
"allow-plugins": {
44-
"composer/installers": true
45-
}
27+
{
28+
"package": {
29+
"dist": {
30+
"type": "zip",
31+
"url": "https://github.com/reyhoun/acf-menu-chooser/archive/refs/tags/v1.1.0.zip"
32+
},
33+
"name": "reyhoun/acf-menu-chooser",
34+
"type": "wordpress-plugin",
35+
"version": "1.1"
36+
},
37+
"type": "package"
4638
}
39+
],
40+
"require": {
41+
"creativecommons/vocabulary-theme": "0.1.0",
42+
"reyhoun/acf-menu-chooser": "1.1",
43+
"wpackagist-plugin/advanced-custom-fields": "6.1.8",
44+
"wpackagist-plugin/classic-editor": "1.6.3",
45+
"wpackagist-plugin/redirection": "4.9.2",
46+
"wpackagist-plugin/tablepress": "1.14",
47+
"wpackagist-plugin/wordfence": "7.10.3",
48+
"wpackagist-theme/twentytwentythree": "1.2"
49+
}
4750
}

config/composer/composer.lock

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)