This repository was archived by the owner on Dec 18, 2020. It is now read-only.

Description
| Q |
A |
| Bug? |
yes |
| New Feature? |
no |
| Sulu Version |
latest |
| Browser Version |
- |
Actual Behavior
When i launch the server using :
php bin/console server:start
the default environment is prod, wich is not very convenient for development.
WebServerBundle is using app.php as entrypoint, because there is no app_dev.php.
Expected Behavior
Builtin server must use dev environment
Steps to Reproduce
composer create-project sulu/sulu-minimal my-project -n
bin/adminconsole sulu:build dev
php bin/console server:start
Possible Solutions
create a app_dev.php, like symfony distribution :
<?php
define('SYMFONY_ENV', 'dev');
require_once __DIR__ . '/app.php';