Skip to content

Drupal template fixes pr 1.x #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
1.1.21
Drupal 9 template configured with composer 2 by default
1.1.22
Drupal 9 template building.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ce-dev",
"description": "Local Stack wrapper tool",
"version": "1.1.21",
"version": "1.1.22",
"author": " @pm98zz-c",
"bin": {
"ce-dev": "./bin/run"
Expand Down
2 changes: 2 additions & 0 deletions templates/blank/ce-dev/ansible/provision.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
- _env_type: dev
- lhci:
enable_vnc: true
- nodejs:
version: 14.x
tasks:
- apt:
update_cache: true
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal9/ce-dev/ansible/deploy.yml.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
# Template playbook for a local Drupal9 codebase.
# Template playbook for a local Drupal 9 codebase.
- hosts: {{ project_name }}-web
vars:
- project_name: {{ project_name }}
Expand Down
4 changes: 2 additions & 2 deletions templates/drupal9/ce-dev/ce-dev.compose.prebuilt.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ x-ce_dev:
- 'https://www.{{ project_name }}.local'
services:
web:
image: 'codeenigma/drupal8-web:latest'
image: 'codeenigma/drupal9-web:latest'
expose:
- 443
- 80
Expand All @@ -34,6 +34,6 @@ services:
cap_add:
- NET_ADMIN
db:
image: 'codeenigma/drupal8-db:latest'
image: 'codeenigma/drupal9-db:latest'
environment:
MYSQL_ROOT_PASSWORD: ce-dev
2 changes: 1 addition & 1 deletion templates/prebuild.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# Test project creation and pre-build image.
set -e
PROJECTS="blank drupal8"
PROJECTS="blank drupal8 drupal9"

# Common processing.
OWN_DIR=$(dirname "$0")
Expand Down