Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Contenta JSON API profile. #93

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9fd5f4c
Contenta JSON API profile.
greg-1-anderson Jul 7, 2017
c6ab421
Update composer.lock too.
greg-1-anderson Jul 7, 2017
b4e69ff
Config sync directory needs to point at the Contenta location for ins…
greg-1-anderson Jul 7, 2017
85de396
Try pulling some tricks with Contenta installation and configuration.
greg-1-anderson Jul 12, 2017
cd1ae81
Also special-case installation via CLI.
greg-1-anderson Jul 14, 2017
bc5aab5
Remove composer.lock, so that each install will get the latest dev bu…
greg-1-anderson Aug 30, 2017
12668bc
Contenta composer changes
stevector Jan 5, 2018
98552f8
Contenta composer.lock changes
stevector Jan 5, 2018
71e8d7a
setting profile name in settings.php
stevector Jan 5, 2018
576786e
Adding default.services.yml
stevector Jan 5, 2018
ed9d8ad
allow default.services.yml in .gitignore
stevector Jan 5, 2018
f28e32e
Changing install-cms step in composer.json
stevector Jan 5, 2018
3307859
Update settings.php
stevector Jan 5, 2018
cc5ed4e
toggle sync [ci skip]
stevector Jan 10, 2018
aa49093
gitignore /keys/ [ci skip]
stevector Jan 10, 2018
94e3a42
Commit the same version of dropzone that is present at https://github…
stevector Jan 10, 2018
8adc847
set contenta sync dir
stevector Jan 10, 2018
efa149a
set contenta sync dir
stevector Jan 10, 2018
574b796
Remove scenario that won't pass with Contenta
stevector Jan 10, 2018
99c0db3
merge contenta branc
stevector Jan 10, 2018
ff3c985
going back to old install hack
stevector Jan 17, 2018
fd30770
Merge pull request #128 from pantheon-systems/contenta--take2
stevector Jan 29, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ web/autoload.php
web/index.php
web/robots.txt
web/sites/default/default.services.pantheon.preproduction.yml
web/sites/default/default.services.yml
web/sites/default/default.settings.php
web/sites/default/settings.pantheon.php
web/sites/development.services.yml
Expand Down Expand Up @@ -102,3 +101,6 @@ Thumbs.db

# Things in the core directory that Drupal 8 commits in the repository.
!web/core/**/*.gz

# Don't commit keys generated by contenta install
/keys/
13 changes: 9 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
],
"require": {
"composer/installers": "^1.0.20",
"contentacms/contenta_jsonapi": "^1.447",
"cweagans/composer-patches": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.1",
"drupal/config_direct_save": "^1.0",
Expand Down Expand Up @@ -39,7 +40,7 @@
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "alpha",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
Expand Down Expand Up @@ -76,11 +77,15 @@
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"enable-patching": true,
"patches":{
"asm89/stack-cors": {
"(November 29 2017 06:22:06 PM: See issue #223 on contentacms/contenta_jsonapi) Add origin matcher for wildcard matching": "https://raw.githubusercontent.com/contentacms/contenta_jsonapi_project/8.x-1.x/patches/asm89_stack-cors/pull_request_42.patch"
}
},
"build-env": {
"install-cms": [
"drush site-install standard --account-mail={account-mail} --account-name={account-name} --account-pass={account-pass} --site-mail={site-mail} --site-name={site-name} --yes",
"drush pm-enable config_direct_save simple_block --yes",
"drush pm-uninstall block_content --yes"
"drush site-install contenta_jsonapi --account-mail={account-mail} --account-name={account-name} --account-pass={account-pass} --site-mail={site-mail} --site-name={site-name} --yes"
],
"export-configuration": "drush config-export --yes"
},
Expand Down
Loading