2016-01-07 12:28:15 +02:00
|
|
|
<?php
|
2016-01-11 12:51:59 +07:00
|
|
|
/* (c) Anton Medvedev <anton@medv.io>
|
2016-01-07 12:28:15 +02:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2016-01-11 14:00:45 +07:00
|
|
|
namespace Deployer;
|
|
|
|
|
2016-01-07 12:28:15 +02:00
|
|
|
require_once __DIR__ . '/symfony.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Symfony 3 Configuration
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Symfony shared dirs
|
2016-02-29 08:19:23 +07:00
|
|
|
set('shared_dirs', ['var/logs', 'var/sessions']);
|
2016-01-07 12:28:15 +02:00
|
|
|
|
|
|
|
// Symfony writable dirs
|
2016-02-29 08:19:23 +07:00
|
|
|
set('writable_dirs', ['var/cache', 'var/logs', 'var/sessions']);
|
2016-01-07 12:28:15 +02:00
|
|
|
|
2016-06-05 12:58:34 -04:00
|
|
|
// Symfony executable and variable directories
|
2016-01-07 12:28:15 +02:00
|
|
|
set('bin_dir', 'bin');
|
|
|
|
set('var_dir', 'var');
|