-
Notifications
You must be signed in to change notification settings - Fork 1
chore: update config #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| database: | ||
| type: mariadb:10.5.23 | ||
| portforward: 32778 | ||
| creds: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
create database with credentials matching those now provided in .env.example
.lando.yml
Outdated
| - scripts/pressbooks_required_libraries.sh | ||
| build: | ||
| - composer install | ||
| run_as_root: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perform database import and install tests after build process completes.
| description: Run tests by filter | ||
| cmd: | ||
| - appserver: composer run filter_test | ||
| db-import-custom: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add new command for performing custom database import. Can remove after lando/core#384 is released
| - user: wordpress | ||
| - password: wordpress | ||
| - database: wordpress | ||
| - user: pressbooks_oss_user |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update values to match new defaults
This PR simplifies the installation process by automatically importing the sample DB and tests as part of the build step. It also updates the readme. Addresses pressbooks/pressbooks.org#141 along with pressbooks/pressbooks.org#143