Magento Certified Professional Cloud Developer
https://killexams.com/pass4sure/exam-detail/Magento-Certified-Professional-Cloud-Developer
A support ticket should be filed with Magento Commerce Cloud to fix the filesystem issue.
The extension should be modified so it does not write to generated at runtime.
The GENERATED_CODE_WRITABLE variable should be set to true whenever using extensions.
Remove the system/default/general/locale configuration from the app/etc/config.php file
Configure SCD_ON_DEMAND to true in the .magento.env.yaml file
Run the command vendor/bin/ece-tools locales:unlock on the environment
Configure DYNAMIC_LOCALES in the SCD_MATRIX to true in the .magento.env.yaml file
Reference: https://devdocs.magento.com/cloud/live/sens-data-over.html
Use the Country Mapping in the Fastly settings to map country codes to store views.
In the Project Web UI, enable the Website IP Mapping setting.
Update magento-vars.php to detect the country code from the IP address and map it.
Build or install a Magento extension that changes the default currency code on application init.
What do you do to reduce site downtime?
Set the SKIP_MAINTENANCE_SCD variable to true in the .magento.env.yaml file.
Add a custom command to the post_deploy phase to activate deferred deployment.
Move custom commands from the deploy phase to the build phase.
Update the SCD_MATRIX variable to include only necessary custom commands.
Enable Deployment Notifications under Configure Environment > Settings in the Project Web UI
Build a custom module which hooks into the deployment phase and sends emails in real-time
Use the magento-cloud environment:deploy:email command to enable email notifications
Reference: https://devdocs.magento.com/cloud/env/setup-notifications.html
php bin/magento config:set --scope=websites --scope-code=german general/locale/code de_DE
Static content deployment is set up on the deploy phase. Why did this happen?
de_DE is not writeable in pub/static and has to be configured via the .magento.app.yaml file
STATIC_CONTENT_SYMLINK is not configured in the .magento.env.yaml file
Add the env:COMPOSER_AUTH variable on the project level and make it visible on the build phase
Put the composer credentials into /mnt/build/.config/composer/auth.json
Add the COMPOSER_AUTH variable with the sensitive option enabled
What is prohibiting the email from sending?
You have not enabled the Magento Email module with bin/magento module:enable
The Outgoing Emails setting is disabled under Environment Settings in the Project Web UI