Преглед изворни кода

Fichiers de configuration dev (app "producer")

refactoring
keun пре 6 година
родитељ
комит
efb1bcc2bc
3 измењених фајлова са 48 додато и 0 уклоњено
  1. +3
    -0
      environments/dev/producer/config/params-local.php
  2. +20
    -0
      environments/dev/producer/web/index-test.php
  3. +25
    -0
      environments/dev/producer/web/index.php

+ 3
- 0
environments/dev/producer/config/params-local.php Прегледај датотеку

@@ -0,0 +1,3 @@
<?php
return [
];

+ 20
- 0
environments/dev/producer/web/index-test.php Прегледај датотеку

@@ -0,0 +1,20 @@
<?php

date_default_timezone_set('Europe/Paris');

// NOTE: Make sure this file is not accessible when deployed to production
if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) {
die('You are not allowed to access this file.');
}

defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'test');

require(__DIR__ . '/../../vendor/autoload.php');
require(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
require(__DIR__ . '/../../common/config/bootstrap.php');
require(__DIR__ . '/../config/bootstrap.php');

$config = require(__DIR__ . '/../../tests/codeception/config/frontend/acceptance.php');

(new yii\web\Application($config))->run();

+ 25
- 0
environments/dev/producer/web/index.php Прегледај датотеку

@@ -0,0 +1,25 @@
<?php

date_default_timezone_set('Europe/Paris');

defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');

require(__DIR__ . '/../../vendor/autoload.php');
require(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
require(__DIR__ . '/../../common/config/bootstrap.php');
require(__DIR__ . '/../config/bootstrap.php');

$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../../common/config/main.php'),
require(__DIR__ . '/../../common/config/main-local.php'),
require(__DIR__ . '/../config/main.php'),
require(__DIR__ . '/../config/main-local.php')
);

$application = new yii\web\Application($config);

date_default_timezone_set('Europe/Paris');
setlocale(LC_TIME, 'fr_FR.utf8','fra');

$application->run();

Loading…
Откажи
Сачувај