This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> curl -sL -O https://raw.githubusercontent.com/ddev/ddev/master/cmd/ddev/cmd/scripts/test_ddev.sh && bash test_ddev.sh | |
======= Existing project config ========= | |
These config files were loaded for project dscm: [/Users/adrianalmaguer/Sites/cbs_dscm_project/.ddev/config.yaml] | |
name: dscm | |
type: drupal9 | |
docroot: web | |
php_version: 8.1 | |
webserver_type: nginx-fpm | |
webimage: ddev/ddev-webserver:v1.22.0 | |
router_http_port: 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT table_name from information_schema.tables where table_schema = 'db' and table_name like '%migrate%'; | |
//The database needs to be checked before sometimes the table names can use another name. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From tag to HEAD | |
git log --pretty=format:"%s" 8.x-1.0-alpha4..HEAD | |
# Between two tags | |
git log --pretty=format:"%s" 7.x-1.0-beta1..7.x-1.0 | |
# From tag to the start commit | |
git log --pretty=format:"%s" 7.x-1.0-beta1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Use command: | |
git tag v1.0 ec32d32 | |
Where v1.0 is the tag name and ec32d32 is the commit you want to tag | |
Once done you can push the tags by: | |
git push origin --tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//data is the object | |
var val = ''; | |
var obj = data; | |
var obj_name = 'data'; | |
Object.keys(obj).forEach(function (key) { | |
val += obj_name + '.' + key + ' = ' + obj[key] + "\n"; | |
}); | |
console.log(val); |