Skip to content

Commit 62e753e

Browse files
authored
Drupal template fixes pr 1.x (#94)
* Adding a Drupal 9 template to ce-dev. * Testing nodejs version change with blank template. * Incrementing version for release. * There's no drupal9 template for ce-deploy.
1 parent 70954a3 commit 62e753e

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

RELEASE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.1.21
2-
Drupal 9 template configured with composer 2 by default
1+
1.1.22
2+
Drupal 9 template building.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ce-dev",
33
"description": "Local Stack wrapper tool",
4-
"version": "1.1.21",
4+
"version": "1.1.22",
55
"author": " @pm98zz-c",
66
"bin": {
77
"ce-dev": "./bin/run"

templates/blank/ce-dev/ansible/provision.yml.j2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
- _env_type: dev
99
- lhci:
1010
enable_vnc: true
11+
- nodejs:
12+
version: 14.x
1113
tasks:
1214
- apt:
1315
update_cache: true

templates/drupal9/ce-dev/ansible/deploy.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Template playbook for a local Drupal9 codebase.
2+
# Template playbook for a local Drupal 9 codebase.
33
- hosts: {{ project_name }}-web
44
vars:
55
- project_name: {{ project_name }}

templates/drupal9/ce-dev/ce-dev.compose.prebuilt.yml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ x-ce_dev:
1111
- 'https://www.{{ project_name }}.local'
1212
services:
1313
web:
14-
image: 'codeenigma/drupal8-web:latest'
14+
image: 'codeenigma/drupal9-web:latest'
1515
expose:
1616
- 443
1717
- 80
@@ -34,6 +34,6 @@ services:
3434
cap_add:
3535
- NET_ADMIN
3636
db:
37-
image: 'codeenigma/drupal8-db:latest'
37+
image: 'codeenigma/drupal9-db:latest'
3838
environment:
3939
MYSQL_ROOT_PASSWORD: ce-dev

templates/prebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# Test project creation and pre-build image.
33
set -e
4-
PROJECTS="blank drupal8"
4+
PROJECTS="blank drupal8 drupal9"
55

66
# Common processing.
77
OWN_DIR=$(dirname "$0")

0 commit comments

Comments
 (0)