git config --edit --localand change password in url url = https://ecostac-frontend:[email protected]
git config --edit --localand change password in url url = https://ecostac-frontend:[email protected]
| <?php | |
| /** | |
| * add sizeSlug attribute where it is missing and update image src accordingly | |
| */ | |
| // alternative only for fixing sizeSlug: | |
| // wp search-replace '(<!-- wp:image\s{(?!.*"sizeSlug")[^}]*)' '$1,\"sizeSlug\":\"full\"' gr8_posts --regex --regex-delimiter='/' --include-columns=post_content --log=C:\Users\Admin\Downloads\replace.log --precise |
| wp.domReady( () => { | |
| const unsubscribe = wp.data.subscribe( () => { | |
| const command = wp.data.select( 'core/keyboard-shortcuts' ).getShortcutKeyCombination( 'core/commands' ); | |
| if ( command && command.character === 'k' ) { | |
| wp.data.dispatch( 'core/keyboard-shortcuts' ).unregisterShortcut( 'core/commands' ); | |
| unsubscribe(); | |
| } |
| services: | |
| db: | |
| # We use a mariadb image which supports both amd64 & arm64 architecture | |
| image: mariadb:latest | |
| # If you really want to use MySQL, uncomment the following line | |
| #image: mysql:8.0.27 | |
| command: '--default-authentication-plugin=mysql_native_password' | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always |