-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from AsociacionDrupalES/drupal-9
Drupal 9 to dev
- Loading branch information
Showing
336 changed files
with
16,092 additions
and
8,780 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,35 @@ | ||
<?php | ||
$databases['default']['default'] = array( | ||
'database' => 'aed', | ||
'username' => 'aed', | ||
'password' => 'aed', | ||
'prefix' => '', | ||
'host' => 'localhost', | ||
'port' => '3306', | ||
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', | ||
'driver' => 'mysql', | ||
); | ||
|
||
// If you are using your own L/M/W-AMP version, otherwise default to "ddev". | ||
// $databases['default']['default'] = array( | ||
// 'database' => 'aed', | ||
// 'username' => 'aed', | ||
// 'password' => 'aed', | ||
// 'prefix' => '', | ||
// 'host' => 'localhost', | ||
// 'port' => '3306', | ||
// 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', | ||
// 'driver' => 'mysql', | ||
// ); | ||
|
||
$config['stage_file_proxy.settings']['origin'] = 'https://asociaciondrupal.es'; | ||
|
||
// Paypal settings should be set at server level. If you need credentials for | ||
// "sandbox" or "live" environments, contact the AED to get them and put them | ||
// in your "settings.local.php" file, which will override these settings. | ||
$config['paypal_sdk.settings']['environment'] = 'sandbox'; | ||
$config['paypal_sdk.settings']['live_client_id'] = 'AED-XXX'; | ||
$config['paypal_sdk.settings']['live_client_secret'] = 'AED-XXX'; | ||
$config['paypal_sdk.settings']['sandbox_client_id'] = 'AED-XXX'; | ||
$config['paypal_sdk.settings']['sandbox_client_secret'] = 'AED-XXX'; | ||
|
||
// Switfmailer settings. If you need credentials for "sandbox" or "live" | ||
// environments, contact the AED to get them and put them in your | ||
// "settings.local.php" file, which will override these settings. | ||
$config['swiftmailer.transport']['smtp_credentials']['swiftmailer']['username'] = '[email protected]'; | ||
$config['swiftmailer.transport']['smtp_credentials']['swiftmailer']['password'] = 'AED-XXX'; | ||
|
||
|
||
//$settings['trusted_host_patterns'] = array( | ||
// '^dev\.asociaciondrupal\.es$', | ||
//); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.