This shouldn't be done regulary but it could happen you need it to fix some mess
This shouldn't be done regulary but it could happen you need it to fix some mess
I will just link to 2 good articles how to do this
https://www.bounteous.com/insights/2020/03/11/automate-drupal-deployments/
https://chromatichq.com/blog/drupal-8-deployment-scripts
To disable caching while testing your JSON:API endpoints you should put this into your settings.php
$settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.null';
but for this to work, you need to define this service null, which should be added as
To find it via drush, run this command
drush php:eval "echo drupal_get_installed_schema_version('modul_name');"
also if you want to look it up with some DB admin tool, look under table `key_value`, `system.schema` collection row, with a `name` of your module and you will get value of last run update.