Skip to content

Commit e2a2aed

Browse files
sonnyktanthony-malkoun
authored andcommitted
[SDPA-1213] Upgraded JSON:API 2.0, JSON:API Extras 3.3, Webform 5.2, and Metatag. (#39)
* [SDPA-1213] Upgraded JSON:API 2.0, JSON:API Extras 3.3, Webform 5.2, and Metatag. * Update to use develop of all tide modules * Fix missing SITE_INSTALL directive
1 parent a10e3ee commit e2a2aed

File tree

4 files changed

+38
-24
lines changed

4 files changed

+38
-24
lines changed

.env

+22-8
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,17 @@
1212
# This file may be left as is to assume default values specified in .ahoy.yml.
1313

1414
# Project name.
15-
# Defaults to the name of the current directory with stripped hyphens and
16-
# underscores.
15+
# Defaults to the name of the current directory.
1716
# PROJECT_NAME=mysite
1817

18+
# Docker Compose project name.
19+
# All containers will have this prefix.
20+
# Defaults to $PROJECT_NAME
21+
# COMPOSE_PROJECT_NAME=mysite
22+
23+
# Drupal module prefix for site-specific modules.
24+
# DRUPAL_MODULE_PREFIX=mysite
25+
1926
# Path to the root of the project inside of the container.
2027
# APP=/app
2128

@@ -27,11 +34,6 @@
2734
# Defaults to http://<CURRENTDIR>.docker.amazee.io
2835
# LOCALDEV_URL=http://mysite.docker.amazee.io
2936

30-
# Docker Compose project name.
31-
# All containers will have this prefix.
32-
# Defaults to $PROJECT_NAME
33-
# COMPOSE_PROJECT_NAME=mysite
34-
3537
# Database connection details.
3638
# MYSQL_HOST=mariadb
3739
# MYSQL_PORT=3306
@@ -40,9 +42,21 @@
4042
COMPOSER=composer.build.json
4143

4244
# Uncomment this for site build and set the profile name.
43-
DRUPAL_PROFILE=tide
45+
# DRUPAL_PROFILE=
4446

4547
# Uncomment to run the build in suggest mode.
4648
# In this mode, modules from "suggested" part of composer.json will be
4749
# installed.
4850
# INSTALL_SUGGEST=1
51+
52+
# Uncomment to install brand new site.
53+
INSTALL_NEW_SITE=1
54+
55+
# Uncomment to refresh search API on deployment.
56+
# DRUPAL_REFRESH_SEARCHAPI=1
57+
58+
# Uncomment and add comma-separated list of targets (no spaces).
59+
# PHPCS_TARGETS="src,tests"
60+
61+
# Uncomment below if Bay integration is enabled.
62+
# BAY_INTEGRATION_ENABLED=1

composer.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
"type": "drupal-profile",
55
"license": "GPL-2.0-or-later",
66
"require": {
7-
"dpc-sdp/tide_api": "^1.0",
8-
"dpc-sdp/tide_core": "^1.0",
9-
"dpc-sdp/tide_event": "^1.0",
10-
"dpc-sdp/tide_landing_page": "^1.0",
11-
"dpc-sdp/tide_media": "^1.0",
12-
"dpc-sdp/tide_monsido": "^1.0",
13-
"dpc-sdp/tide_news": "^1.0",
14-
"dpc-sdp/tide_page": "^1.0",
15-
"dpc-sdp/tide_search": "^1.0",
16-
"dpc-sdp/tide_site": "^1.0",
7+
"dpc-sdp/tide_api": "dev-develop",
8+
"dpc-sdp/tide_core": "dev-develop",
9+
"dpc-sdp/tide_event": "dev-develop",
10+
"dpc-sdp/tide_landing_page": "dev-develop",
11+
"dpc-sdp/tide_media": "dev-develop",
12+
"dpc-sdp/tide_monsido": "dev-develop",
13+
"dpc-sdp/tide_news": "dev-develop",
14+
"dpc-sdp/tide_page": "dev-develop",
15+
"dpc-sdp/tide_search": "dev-develop",
16+
"dpc-sdp/tide_site": "dev-develop",
1717
"dpc-sdp/tide_test": "^1.0",
18-
"dpc-sdp/tide_webform": "^1.0"
18+
"dpc-sdp/tide_webform": "dev-develop"
1919
},
2020
"repositories": {
2121
"drupal": {

dev-init.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
# Development only: uncomment and set the commit value to fetch Dev Tools at
1818
# specific commit.
19-
#export GH_COMMIT=COMMIT_SHA
19+
export GH_COMMIT=e7c3b83e650e69b16aa5ba6db2c21f7ad3257769
2020

2121
curl https://raw.githubusercontent.com/dpc-sdp/dev-tools/master/install | bash

tide.info.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ type: profile
44
package: Tide
55
core: '8.x'
66
dependencies:
7-
- dpc-sdp:tide_api
87
- dpc-sdp:tide_core
9-
- dpc-sdp:tide_event
10-
- dpc-sdp:tide_landing_page
8+
- dpc-sdp:tide_api
119
- dpc-sdp:tide_media
10+
- dpc-sdp:tide_webform
11+
- dpc-sdp:tide_event
1212
- dpc-sdp:tide_news
1313
- dpc-sdp:tide_page
14+
- dpc-sdp:tide_landing_page
1415
- dpc-sdp:tide_search
1516
- dpc-sdp:tide_site
1617
- dpc-sdp:tide_site_simple_sitemap
17-
- dpc-sdp:tide_webform
1818
themes:
1919
- seven

0 commit comments

Comments
 (0)