I have a script to spin up a new site on my local desktop in a Lando environment. I'd like to also run the install script. How do I do that?
Accepted answer
Comments
I found that I can run this bee command to run the install script:
lando bee install --db-name=backdrop --db-user=backdrop --db-password=backdrop --username=admin --password=test1234 --email=test@test.com --site-name="Demo Site" --auto
Unfortunately, I am still asked to provide the Database Password - despite including it in the command.
I still have to manually enter "backdrop" here. Why? Can I skip this?
Change --db-password=
to --db-pass=
https://github.com/backdrop-contrib/bee/blob/1.x-1.x/commands/install.be...
Change
--db-password=
to--db-pass=
https://github.com/backdrop-contrib/bee/blob/1.x-1.x/commands/install.be...