π³οΈDeployment
Some notes on various deployment scenarios whilst using Gitamic.
Last updated
Some notes on various deployment scenarios whilst using Gitamic.
Last updated
When building your application in its production environment or running it through a pipeline, you will likely need to install its dependencies, and this may include Gitamic.
When that happens, Composer will need to authenticate against the private repository in order to install Gitamic.
You probably don't want to be doing this manually in a terminal every time β and thanks to Composer, you don't have to!
How you authenticate will depend on how you deploy:
Laravel Forge has built-in support for private package repository authentication.
Repository URL: gitamic.composer.sh
Username: Your Anystack email address
Password: Your license key (which depends on how you purchased it)
If you're using Gitamic to push
commits from a server that is also the target for automated deployments, when you push
from Gitamic it might trigger a redundant deployment back to the environment that is the source of those changes.
To prevent this, in your deployment script, you will need to write a statement that exits the deployment when it detects that Gitamic initiated the commit.
For example, if you use Laravel Forge (and you haven't customised the git commiter name - see ), you could add the following to the beginning of your deploy script, which inspects the author of the commit and stops the process before it begins:
However, the specific approach you should use will depend on your unique setup.