Migrate Universal to Professional

The Universal stack is a good starting point. If you truly need to scale: we offer the Professional stack for exactly that purpose. Here is how you migrate an App from Universal to Professional.

The goal of this article is to help you migrate your Universal App to a Professional App. On the way, you will learn how to configure and modify your new Professional App, so that it becomes easily scalable in the future. So scalable indeed, that you only need to click a button in the Dashboard to scale resources whenever you need more performance.

For the purposes of this article, we recommend to chose the newly created Professional App in the App chooser on the right side - this way, this article will show you copy-paste-able code examples.

Preparation

Make sure your code is ready to scale and you are using up-to-date design patterns. Have a look at our App design article to learn the best practices to that effect. Also have a look at our general migration guide.

Before we show you how to migrate your existing Universal App to a Professional App, you first need to make sure that the following applies. Mind that it only needs to apply if your App requires it (i.e. you don't need cache abstraction, if you don't need caching):

  • Your framework/CMS supports storage abstraction, so that you can use our Object Storage Component
  • Your framework/CMS supports cache abstraction, so that you can use our Memcache Component
  • Your framework/CMS does not use live updates (think "WordPress update button"), or you don't use them
  • You are familiar with Git and Terminal usage

Check the install guides

We have written install guides for all popular frameworks and CMS. Have a look at our all articles list and see if your framework/CMS is available as an install guide for the Professional Stack. Read those articles for specifics - the following examples focus on general steps to migrate.

Create a new Professional App

First you need to create a new Professional App in the Dashboard. Choose "Create a new App" on the Dashboard Home > choose a professional Stack App, start with the smallest sensible preset (check out the specs page), you can add or scale everything later on. At the end, when all is migrated, you can remove the old Universal App, but that's for later.

Copy settings

Start by aligning all the settings of the new App with those of the old. Here is your check list:

Migration

Once the preparation is completed, you can start with copying data.

Migrate Database

Assuming you are using MySQL, you need to import and export your database from the old App to the new one.

Migrate runtime data

If you are having any kind of run-time data, such as user uploads or content editor uploads, then you need to copy them from the old App to the new App. We recommend to use a GUI like Cyberduck or Transmit to download all runtime data of the old App to your local machine and then upload it back to the Object Storage of your new App.

Changed URLs

Since the runtime data is now stored in the Object Storage Component of your App, all URLs referencing it must change accordingly. To give you a simple example, assuming there was file image.png in a folder uploads in the old App:

  • Old URL: http://domain.tld/uploads/image.png
  • New URL: http://{{app-name}}.objects.frb.io/uploads/image.png

Many frameworks/CMS support a "global" configuration setting, which allows you to change those URLs with a single line of code. If that is not the case with your framework/CMS, then you need to make sure that all URLs are rendered as shown.

Use environment variables for configuration

Since Professional Apps only support Git deployment, and you don't want your access details to any service stored plain text in a Git version history, we strongly recommend to use environment variables (or secrets) to store all your access details (eg MySQL access, 3rd party service access and so on).

Setup Git repo

If the App's code on your local machine is not already under Git version control, then it's now time to make it so. The general approach is to first define all folders and files which are to be excluded in a .gitignore file, then initialize your local App folder as a git repository and finally git push to your new Professional App.

# init local git repo
$ cd your/local/app-dir
$ git init .

If you App is already under Git version control, then you only need to add your new App's git remote. Also double check your ignore file, to make sure all, which should not be there, is not there.

Ignore file

Since the excludes, specified in .gitignore, are highly depended on your framework/CMS and your custom code, we can give you only a general advise:

  • If you are working with Composer:
    • NOT exclude the composer.lock or composer.json file
    • Exclude the vendor/ folder
  • Exclude upload folders
  • Exclude log folders
  • Exclude folders containing temporary data
# build ignore list (example)
$ echo vendor/ >> .gitignore
$ echo storage/ >> .gitignore
$ echo logs/ >> .gitignore

Connect

Connecting your App means just to add the new App's remote:

$ git remote add fortrabbit {{app-name}}@deploy.{{region}}.frbit.com

Note: If you were already using Git with your old App, then you can use any other name than "fortrabbit" when adding the remote. It's just a helper for you, so that you don't always need to enter the full URL of your repo.

First push

Now that your local git repo is connected to your new App, you can:

# add all to git
$ git add -A
$ git commit -m 'Initial'

# push for the first time
$ git push -u fortrabbit main

Review

Once the first deployment is done, it's time to review your new App: are any of the configurations from the preparation are missing or wrong? Do you have been too loose or too strict with the contents in your git ignore file? And so on. It should basically work at this point, just not with your custom domains.

Finish up: Migrate domains

Once your new Professional App is working as expected, you can safely migrate all domains from the old Universal App to the new Professional App. Mind that you also keep the same root path, when doing so.

The general approach is:

  • Change the domain routing from the old App's hostname to the new App's hostname
  • Delete the domain from the old App
  • Add the domain to the new App
  • Rinse and repeat for all domains

All articles

Craft CMS

Statamic

Install guides

Code access

Deployment

Git

SSH

SFTP

Troubleshooting

DNS

MySQL

TLS (SSL)

htaccess

Development

Teamwork

Platform

Billing

The Dashboard

Stacks

Tips & tricks

Quirks

Support

FAQ

Need individual help?
Learn about Company plans ›
Looking for an old article?
See the full list of articles ›
Found an error?
Contribute on GitHub ›