Skip to main content
101
results
Andrew Fletcher
Adding git tag to your actions. The regular process that I work to is git add -A git commit -m "some comment" git pushWith git tag, whilst there are many options for how you can apply git tag, this initial step I'll keep simple.  As follows: git add -A git commit -m "some comment" git tag some note git pushI'm looking to trigger a GitHub pipeline action.  The trigger in this instance is dev-* So if the tag has something with dev-, then the pipeline trigger occurs.  By way of...
Andrew Fletcher
In this woalk through I am going to use GitHub.  However, the steps are...
Andrew Fletcher
If you edit a Drupal contrib module, the next time the module is updated those...
Andrew Fletcher
In terminal I ran a regular command - compose update.  Something I've...
Andrew Fletcher
Currently I'm working through an app that has been abandoned by the developers....
Andrew Fletcher
First off, this isn't the only method to achieve the outcome of emptying a file. Using a symbol : is a shell built-in command that is essence equivalent to the true command and it can be used as a no-op (no operation).  It can be used as follows: # : > filename.txtOR  # true > filename.txt  My initial file was as follows: 21548342 16 Mar 20:27 code.logPost using the command  : > filename.txtThe response was  0 16 Mar 20:27...
Andrew Fletcher
Changes in your .env file Connecting your app to the new environment you need to...
Andrew Fletcher
Clear DNS Cache The DNS (Domain Name Service) cache on your Mac helps browsers...
Andrew Fletcher
Changing git push from passphrase?  There are several ways to tackle this...
Andrew Fletcher
We are going to work through two methods of creating the SOLR cores. Variables...
Andrew Fletcher
xdebug - failed to solve with frontend dockerfile.v0: failed to create LLB definition: dockerfile parse error line 45: unknown instruction: ZEND_EXTENSION=XDEBUG.SO   How I got here Running the following Docker command docker-compose upGenerated this output: Building php [+] Building 0.1s (2/2) FINISHED  => [internal] load build definition from Dockerfile                       0.0s  => => transferring...
Andrew Fletcher
Create and push to Docker Hub Creating your own custom image... you need to have...
Andrew Fletcher
Running composer on a server... when running the command composer update, screen...
Andrew Fletcher
Resetting Docker is basically following the start parameters.  All...
Andrew Fletcher
It is really simple to switch users in Ubuntu or any other Linux distribution...