Boolean flags in `~/.lambo/config` do not get applied.
camya opened this issue · 2 comments
camya commented
Boolean flags in ~/.lambo/config do not get applied. The affected flags are DEVELOP
, CREATE_DATABASE
, MIGRATE_DATABASE
, LINK
and SECURE
.
Original description
It's strange, but lambo does not create & migrate the database, also its configured correctly (see CREATE_DATABASE=true
in config
file below). In the past, the database was created.
This command does not create a database: lambo new mydemo1 --breeze=blade
The database is only created if i add the option. lambo new mydemo2 --breeze=blade --create-db
My lambo config (System: Apple M1)
PROJECTPATH=
MESSAGE="Initial commit."
DEVELOP=true
CODEEDITOR=phpstorm
BROWSER="/Applications/Google Chrome.app"
LINK=true
SECURE=true
CREATE_DATABASE=true
MIGRATE_DATABASE=true
DB_HOST=127.0.0.1
DB_PORT=3306
DB_NAME=
DB_USERNAME=root
DB_PASSWORD=root
mattstauffer commented
@jonsugar Is this something you have time to dig into? If not, I'll get on it this week.