Revize ae9dc1f5
Přidáno uživatelem Filip Jani před více než 5 roky(ů)
app/bootstrap.php | ||
---|---|---|
4 | 4 |
|
5 | 5 |
$configurator = new Nette\Configurator; |
6 | 6 |
|
7 |
include __DIR__ . '/bootstrap-local.php'; |
|
8 |
|
|
9 |
// dev prostředí, kytičky, sluníčko, všechno hezky funguje |
|
10 |
if ($env === 'dev') |
|
11 |
{ |
|
12 |
$configurator->setDebugMode(TRUE); // enable for your remote IP |
|
13 |
$configurator->enableTracy(__DIR__ . '/../log'); |
|
14 |
$configurator->setTempDirectory(__DIR__ . '/../temp'); |
|
15 |
} |
|
16 |
// CIV prostředí |
|
17 |
else |
|
18 |
{ |
|
19 |
if (!file_exists($logDir)) |
|
20 |
{ |
|
21 |
mkdir($logDir, 0700, TRUE); |
|
22 |
} |
|
23 |
|
|
24 |
if (!file_exists($tempDir)) |
|
25 |
{ |
|
26 |
mkdir($tempDir, 0700, TRUE); |
|
27 |
} |
|
28 |
|
|
29 |
$configurator->enableTracy($logDir); |
|
30 |
$configurator->setTempDirectory($tempDir); |
|
31 |
} |
|
7 |
|
|
8 |
$configurator->setDebugMode(TRUE); // enable for your remote IP |
|
9 |
$configurator->enableTracy(__DIR__ . '/../log'); |
|
10 |
$configurator->setTempDirectory(__DIR__ . '/../temp'); |
|
32 | 11 |
|
33 | 12 |
$configurator->setTimeZone('Europe/Prague'); |
34 | 13 |
|
Také k dispozici: Unified diff
Odstranění dočasných souborů pro zprovoznění na CIVu