]> git.immae.eu Git - github/wallabag/wallabag.git/blame - bin/console
Jump to 2.3.6-dev and update release process
[github/wallabag/wallabag.git] / bin / console
CommitLineData
93fd4692
NL
1#!/usr/bin/env php
2<?php
3
5c895a7f
JB
4use Symfony\Bundle\FrameworkBundle\Console\Application;
5use Symfony\Component\Console\Input\ArgvInput;
6use Symfony\Component\Debug\Debug;
7
93fd4692
NL
8// if you don't want to setup permissions the proper way, just uncomment the following PHP line
9// read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information
10//umask(0000);
11
12set_time_limit(0);
13
5c895a7f
JB
14/**
15 * @var Composer\Autoload\ClassLoader $loader
16 */
73cd160b 17$loader = require __DIR__.'/../app/autoload.php';
93fd4692
NL
18
19$input = new ArgvInput();
73cd160b
JB
20$env = $input->getParameterOption(['--env', '-e'], getenv('SYMFONY_ENV') ?: 'dev');
21$debug = getenv('SYMFONY_DEBUG') !== '0' && !$input->hasParameterOption(['--no-debug', '']) && $env !== 'prod';
93fd4692
NL
22
23if ($debug) {
24 Debug::enable();
25}
26
27$kernel = new AppKernel($env, $debug);
28$application = new Application($kernel);
29$application->run($input);