Skip to content

Commit b1c95de

Browse files
committed
Merge branch 'develop' into BKDK-449
2 parents 5d7a45e + b7bb3ce commit b1c95de

File tree

47 files changed

+2213
-733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2213
-733
lines changed

.docker/os2web/settings/prod.settings.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,17 @@
2424
'username' => getenv('MYSQL_USER'),
2525
];
2626

27+
$databases['migrate']['default'] = [
28+
'database' => getenv('MIGRATE_MYSQL_DATABASE'),
29+
'driver' => 'mysql',
30+
'host' => getenv('MIGRATE_MYSQL_HOSTNAME'),
31+
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
32+
'password' => getenv('MIGRATE_MYSQL_PASSWORD'),
33+
'port' => getenv('MIGRATE_MYSQL_PORT'),
34+
'prefix' => '',
35+
'username' => getenv('MIGRATE_MYSQL_USER'),
36+
];
37+
2738
$settings['hash_salt'] = getenv('DRUPAL_HASH_SALT');
2839

2940
$settings['file_temp_path'] = '../tmp';

.docksal/etc/php/php.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
memory_limit = -1
22
error_log = '/var/www/logs/php-errors.log'
3+
#xdebug.profiler_enable = 1;
4+
#xdebug.profiler_output_dir = "/var/www/logs/xdebug"

.env.example

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,17 @@
3030
## Theme that is going to be used on installation process.
3131
# OS2WEB_THEME=
3232

33+
## Migrate DB mysql variables.
34+
# MIGRATE_MYSQL_DATABASE=
35+
# MIGRATE_MYSQL_HOSTNAME=
36+
# MIGRATE_MYSQL_PASSWORD=
37+
# MIGRATE_MYSQL_PORT=
38+
# MIGRATE_MYSQL_USER=
3339

3440
## Variable used only in docker-compose.yaml
3541
# OS2WEB_TAG=
3642
# Meeting folder mounting credentials
3743
# OS2WEB_MEETINGS_MNT_HOST=
3844
# OS2WEB_MEETINGS_MNT_SHARES=
45+
## Port that is used on host machine for reaching out application
46+
# WEB_SERVER_PORT=8098

composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,17 @@
4646
"cweagans/composer-patches": "^1.6.5",
4747
"drupal/access_latest": "^0.0.1",
4848
"drupal/anonymous_subscriptions": "1.x-dev@dev",
49+
"drupal/ckeditor_iframe": "^2.1",
4950
"drupal/coder": "^8.3",
5051
"drupal/console": "^1.0.2",
5152
"drupal/core": "^8.8.0",
5253
"drupal/core-composer-scaffold": "^8.8.0",
54+
"drupal/fancy_file_delete": "^2.0",
5355
"drupal/gin": "^3.0",
5456
"drupal/gin_login": "^1.0@RC",
5557
"drupal/memcache": "^2.2",
5658
"drupal/monitoring": "^1.9",
59+
"drupal/pdf_api": "^2.0",
5760
"drupal/quick_node_clone": "^1.14",
5861
"drupal/redirect_after_login": "^2.7",
5962
"drupal/siteimprove": "^1.10",
@@ -146,7 +149,11 @@
146149
"Incorrect user lookup on Bulk deleting": "https://git.drupalcode.org/project/user_delete_reassign/-/commit/05076bbedb66f8471d023894a88b980c2ecdf8d5.patch"
147150
},
148151
"drupal/core": {
149-
"Notice: Undefined index: value in Drupal\\views\\Plugin\\views\\filter\\NumericFilter->acceptExposedInput()" : "https://www.drupal.org/files/issues/2020-06-04/2825860-exposed-filter-notice-38.patch"
152+
"Notice: Undefined index: value in Drupal\\views\\Plugin\\views\\filter\\NumericFilter->acceptExposedInput()" : "https://www.drupal.org/files/issues/2020-06-04/2825860-exposed-filter-notice-38.patch",
153+
"Allow edit Media items from Media Library modal dialog in CKEditor" : "https://www.drupal.org/files/issues/2021-04-21/3168868-13_0.patch"
154+
},
155+
"drupal/printable": {
156+
"3214729 PDF filename is generated with it's location" : "https://git.drupalcode.org/issue/printable-3214729/-/commit/cbc98dbe864f82b4cc1da110d88097d0c4740bb9.patch"
150157
}
151158
}
152159
}

0 commit comments

Comments
 (0)