yii-app
yii-app copied to clipboard
Database password mismatch
The password used in bootstrap.sh script
create database
mysql -uroot -pyii_app -e "CREATE DATABASE IF NOT EXISTS yii_app
CHARACTER SET utf8 COLLATE utf8_general_ci;"
does not match the password in dev. environment config. file (main-environment.php)
'db' => array(
'connectionString' => 'mysql:host=localhost;dbname=yii_app',
'username' => 'root',
'password' => 'vagrant',
'charset' => 'utf8',
'enableProfiling' => true,
'enableParamLogging' => true,
),
It is not a big deal but making them match will help to have the app configured in the Virtualbox up and running easier.
This is a good idea, could you create a PR for this?