Download the PHP package fortrabbit/craft-copy without Composer
On this page you can find all versions of the php package fortrabbit/craft-copy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download fortrabbit/craft-copy
More information about fortrabbit/craft-copy
Files in fortrabbit/craft-copy
Informations about the package craft-copy
Craft Copy Plugin
This little command line tool helps to speed up common tasks around Craft CMS deployment on fortrabbit. Craft Copy syncs your local development environment with your fortrabbit App — up and down. It conveniently deploys code changes and synchronizes latest images and database entries. This Craft CMS plugin will be installed locally and on the fortrabbit App.
Demos
Here is a video introdcution (1.5 minutes).
Requirements
- A local development environment including: Craft 5 (since version 3), PHP 8 and Composer.
- The following binaries should be executable:
php
,mysqldump
,git
andrsync
- A SSH key installed should with your fortrabbit Account (no password auth so far)
- You need to have an App with fortrabbit
Craft Copy works for Universal Apps and Professional Apps. Asset synchronisation is only available for Universal Apps with local asset volumes. It's known to work locally with Laravel Herd, Laravel Valet and DDEV.
Installation
Best install Craft Copy in the terminal on your local computer with Composer like so:
You will be guided through a form to connect your local App with the App on fortrabbit. Craft Copy is available in the Craft CMS plugin store.
Usage
Craft Copy will always be executed on your local computer in your local development environment.
The optional {stage}
parameter defines which fortrabbit App the command applies to. It is useful when working with multiple fortrabbit Apps as stages. The default parameter is the app name. See multi-staging section below for more.
Some commands are interactive, meaning that you will need to confirm certain potential dangerous operations. You can disable such manual interactions by adding the --interactive=0
flag in most cases. The short alias version is -i=0
.
Setup
Get help
Database
Code
While you can use git push
as well to deploy code by Git to your fortrabbit App, the Craft Copy code commands offer some additional extras: It will check for uncommitted changes and initialize the Git repo if required.
Options and arguments
- To prevent a prompt, for instance when running the command in a CI pipeline, you can use
php craft copy/code/up -i=0 -m="your commit message"
.
Asset Volumes
Assets in Craft CMS are media files that are uploaded by editors and managed by the CMS. Assets are getting stored in volumes and are not part of Git.
- The "File System Path" for the Volume setting within the Craft CMS control panel should not be a relative path. You can use the
@webroot
alias. - Remote volumes (S3, Object Storage …) are not supported so far
Options and arguments
- {volumeHandle} is the handle name of your asset volume in Craft CMS
- To sync all volumes, don't provide a volumeHandle (and add
-i=0
to avoid questions) - To test what will actually be synced you can add the
-n
option to trigger a dry-run
Copy all
Often you want to get all the latest content from the App or maybe even push all local changes up to the App. You can use the all command for that:
- This is not including the folder action by default.
DDEV support
Craft Copy supports DDEV. Once you got the container running:
ddev auth ssh
- Copy SSH keys from the host into the containerddev ssh
- Login to the container- From their proceed as required
See our slighlty old blog post on how to set it up together.
Craft Nitro support (deprecated)
This feature will be removed with the next major version since Craft Nitro is retired.
Advanced usage
Don't stop. Read on to fully understand Craft Copy!
Config file
The setup
command creates a configuration file within the Craft /config
folder. The file name pattern is fortrabbit.{stage}.yml
, where {stage}
is how you have defined the fortrabbit App environment in the example file.
Automatic migrations
Craft Copy incorporates another package called Craft auto migrate. It makes sure that database migrations will always run when deploying to the fortrabbit App. That means that every time you'll push code via Git, a database migration will be triggered and changes from project.yaml
will be applied right away, without the need to click the apply changes button with the Control Panel.
The other way around, when pulling down changes, a database migration will also run. This is configured via a default config file.
Project Config
Craft Copy alters the behaviour of the ProjectConfig
class to prevent Project Config actions in the CP.
By default, we apply
the potential changes during deployment after composer install.
Multi staging
At fortrabbit you can set up multiple Apps to create multiple environments for your project. See the multi-staging help article.
Multi staging config
Once your Apps are in place, you connect your local environment with each App.
The setup command creates a config file for each App.
Multi staging usage
Before/after commands
You can run any script before or after you run common up/down commands with Craft Copy.
- Place the before/after scripts in your Craft Copy config file.
- The before/after commands will run on your local machine, not on the fortrabbit App. To run scripts while deploying, consider the Composer
post-install-cmd
.
Supported commands
- code/up
- code/down
- db/up
- db/down
- volumes/up
- volumes/down
- folder/up
- folder/down
Before/after example
Automate your deployment pipeline. Every time you push up new code with code/up
also minify javascript and css and sync it up as well:
Here is a full config file example: config/fortrabbit.example.yaml
Database to file
There is also a command to create a local copy of your database to a file. You can create an .sql
file and also import back such file into the database. Here is the command:
Note that there are also similar Craft CLI commands for this: php craft backup/db
and php craft restore/db
.
Synchronize folders
You can also synchronize folders which are not in Git or not an Asset Volume. A common use case is to sync up build artifacts such as minified JS or CSS to your fortrabbit App. This can be coupled with before/after commands.
- The
{folder}
is your relative path seen from the craft executable (project root)
Using Craft Copy in Docker environments
You may want to run Craft Copy within any Docker container. You will need the following dependencies to be installed inside the container:
- mysqldump
- mysql (client)
- ssh (client)
- Access to the SSH keys you saved with your fortrabbit Account - for example like so
How Craft Copy works
With fortrabbit you can already use Git to deploy code without any extras or plugins. When deploying code by Git Composer also is getting triggered. Craft Copy enhances on that by adding support for files that are excluded from Git such as assets in volumes, folders and database contents.
Craft Copy can help to bring together the different data types required to run Craft CMS. Each data type is unique, so is the transport layer. Here are more details so you can better understand what's going on behind the scenes:
Template and dependencies code via Git
Craft Copy offers a light weight Git wrapper. The direction will be in most case up
(push code), since you will develop locally first and then push changes up to the fortrabbit App. Since Git is transport layer and version history, those changes are non-destructive. You can always roll back.
The composer.json
is also managed in Git and when you push a change to that file, Composer will run during deployment on fortrabbit. That's not Craft Copy but a fortrabbit feature. So you don't need to login by SSH and run Composer manually. Also you should not trigger any updates with the Craft CMS Control Panel on the fortrabbit App itself.
Asset Volumes
Any asset files and folders, including image transformations that can be synced up and down with the volumes command. Here rsync will be used. The transport flags are set to be non-destructive. No files will be deleted and you can safely run this operation in any direction without having to fear any data loss. You might need to keep your assets library clean from time to time.
Database
The MySQL database is getting copied over by using mysqldump
. So it basically will export the current status of the database as an file.sql
and will replace the other database with that file. In other words: This can be a destructive operation. You need to make sure that any content changes affecting the database, like new entries or editing entries are only done in one environment, either locally or on the fortrabbit App. It can not merge changes, like with assets or code. Good news is, that Craft Copy will always create a snapshot file which you can use to roll back.
my.conf file
Craft Copy creates a my.conf
file. It sets some defaults to ensure maximal compability when working with different MySQL versions. See the annotated file here and read about SUPER priviliges here.
Troubleshooting Craft Copy
The setup is usually straight forward when the system requirements are fulfilled. However, depending on your local setup, you may run into errors. Many errors are MAMP related and easy to fix:
Local MySQL connection error
Fix: Ensure "Allow network access to MySQL" is ticked in MAMP.
The mysqldump command does not exist
The mysqldump
client is a command line program to backup mysql databases. It is usually included with MySQL installations. Find out if you can access mysqldump:
Possible fix: Add the MAMP bin path to your Bash profile:
PHP cli version is lower than 7.1
Find out the php version on the command line:
Fix: Add MAMP php bin path to your Bash profile:
Composer version conflict
When installing the plugin via Composer you may see an error like this:
Fix: Update all existing dependencies:
Composer allow plugin issue
You see a warning like this when trying to deploy:
That's a new Composer security policy in action and should only happen when you installed the plugin a while ago.
Fix: Configure Composer to allow plugins:
All versions of craft-copy with dependencies
albertofem/rsync-lib Version ^1.0.0
composer/composer Version ^2.7
craftcms/cms Version ^4.6 | ^5.0
craftcms/plugin-installer Version ^1.5.6
fortrabbit/craft-auto-migrate Version ^2.5.0
gitonomy/gitlib Version ^1.3
fortrabbit/yii2-artisan-bridge Version ^1.5.1
symfony/process Version ^5.0 | ^6.0
symfony/yaml Version ^4.2 | ^5.0 | ^6.0
vlucas/phpdotenv Version ^3.4.0 | ^5.4