mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
24 lines
487 B
PHP
24 lines
487 B
PHP
<?php
|
|
/* (c) Anton Medvedev <anton@medv.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Deployer;
|
|
|
|
require_once __DIR__ . '/symfony.php';
|
|
|
|
/**
|
|
* Symfony 3 Configuration
|
|
*/
|
|
|
|
// Symfony shared dirs
|
|
set('shared_dirs', ['var/logs', 'var/sessions']);
|
|
|
|
// Symfony writable dirs
|
|
set('writable_dirs', ['var/cache', 'var/logs', 'var/sessions']);
|
|
|
|
set('bin_dir', 'bin');
|
|
set('var_dir', 'var');
|