Skip to content

Feature/rds mysql 8 test #147

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

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6e8576e
Update README.md
rashed-k Nov 8, 2022
75e3da5
Update README.md
rashed-k Nov 8, 2022
39d689e
Update README.md
rashed-k Nov 8, 2022
c307837
Update README.md
rashed-k Nov 8, 2022
6c87111
Update README.md
rashed-k Nov 15, 2022
4ce8ee3
Update README.md
rashed-k Nov 15, 2022
31f0324
Update README.md
rashed-k Nov 15, 2022
9babf07
Update README.md
rashed-k Jan 6, 2023
9a00592
Merge pull request #4 from rashed-k/feature/develop
rashed-k Jan 6, 2023
7e8cbca
Update README.md
rashed-k Jan 9, 2023
469e1e2
Update README.md
rashed-k Jan 12, 2023
667c87d
Update README.md
rashed-k Apr 5, 2023
715558a
Update README.md
rashed-k Apr 5, 2023
e039975
Update README.md
rashed-k Apr 18, 2023
dbe6661
Merge pull request #16 from rashed-k/feature/develop
rashed-k Apr 18, 2023
8d07c90
Update README.md
rashed-k Apr 18, 2023
088bfab
Merge pull request #17 from rashed-k/feature/develop
rashed-k Apr 18, 2023
61be2b8
Update README.md
rashed-k Nov 27, 2023
183383d
Update README.md
rashed-k Nov 27, 2023
d6b90c8
Update README.md
rashed-k Nov 27, 2023
7fa8f90
Update README.md
rashed-k Nov 27, 2023
0c4028a
Update README.md
rashed-k Nov 27, 2023
32a6318
Update README.md
rashed-k Nov 27, 2023
ab6d87f
Merge branch 'main' into feature/rmk-test-1
rashed-k Nov 27, 2023
b63293f
Merge pull request #26 from rashed-k/feature/rmk-test-1
rashed-k Nov 27, 2023
fb4886d
Update README.md
rashed-k Nov 28, 2023
59073aa
Update README.md
rashed-k Dec 5, 2023
1849d10
Update README.md
rashed-k Aug 7, 2024
80ad424
added db settings
rashed-k Jan 20, 2025
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Base template for Drupal 9 projects hosted on Lagoon

# Base template for Drupal 9 projects hosted on Lagoon...........dd
.......PR...........................dfsdfsdf.....ss....fgdfg...dd....dfdfdfdf....
This template includes everything necessary to run on [Lagoon](https://www.github.com/uselagoon/lagoon) (in both the local development environments or on hosted Lagoon clusters.)

This project template should provide a kickstart for managing your site
This project template should provide a kickstart for dmanaging your site
dependencies with [Composer](https://getcomposer.org/). It is based on the [original Drupal Composer Template](https://github.com/drupal-composer/drupal-project),

## Included Services
Expand Down
14 changes: 14 additions & 0 deletions assets/all.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@
// folder outside this subfolder for an advanced security measure: '../config/sync'.
$settings['config_sync_directory'] = '../config/sync';


// Database connection settings to enforce utf8mb4_general_ci.
$databases['default']['default'] = [
'driver' => 'mysql',
'database' => getenv('MARIADB_DATABASE'),
'username' => getenv('MARIADB_USERNAME'),
'password' => getenv('MARIADB_PASSWORD'),
'host' => getenv('MARIADB_HOST'),
'port' => getenv('MARIADB_PORT'),
'prefix' => '',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
];

if (getenv('LAGOON_ENVIRONMENT_TYPE') !== 'production') {
/**
* Skip file system permissions hardening.
Expand Down