Add soba.egplusww.jp as local development host, jshint esversion update to 11

This commit is contained in:
Clemens Schwaighofer
2024-08-07 13:41:09 +09:00
parent aa2b60973e
commit a8d07634ff
2 changed files with 12 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
/* general edit javascript */ /* general edit javascript */
/* jquery version */ /* jquery version */
/* jshint esversion: 6 */ /* jshint esversion: 11 */
/* global i18n */ /* global i18n */

View File

@@ -24,18 +24,6 @@ declare(strict_types=1);
// ]; // ];
$__LOCAL_CONFIG = [ $__LOCAL_CONFIG = [
'db_host' => 'test',
'location' => 'test',
'debug_level' => 'debug',
'site_locale' => 'en_US.UTF-8',
'site_encoding' => 'UTF-8',
'login_enabled' => true
];
// each host has a different db_host
$SITE_CONFIG = [
// development host
'soba.tokyo.tequila.jp' => [
// db config selection // db config selection
'db_host' => 'test', 'db_host' => 'test',
// other db connections // other db connections
@@ -51,8 +39,14 @@ $SITE_CONFIG = [
'site_encoding' => 'UTF-8', 'site_encoding' => 'UTF-8',
// enable/disable login override // enable/disable login override
'login_enabled' => true 'login_enabled' => true
], ];
// each host has a different db_host
$SITE_CONFIG = [
// development host
'soba.tokyo.tequila.jp' => $__LOCAL_CONFIG,
// 'other.host.com' => $__LOCAL_CONFIG // 'other.host.com' => $__LOCAL_CONFIG
'soba.egplusww.jp' => $__LOCAL_CONFIG,
'soba-dev.tequila.jp' => $__LOCAL_CONFIG, 'soba-dev.tequila.jp' => $__LOCAL_CONFIG,
'soba.tequila.jp' => $__LOCAL_CONFIG, 'soba.tequila.jp' => $__LOCAL_CONFIG,
'soba.teq.jp' => $__LOCAL_CONFIG, 'soba.teq.jp' => $__LOCAL_CONFIG,