Build System Setup

You can have one build system that meets the following requirements:

  • All Magento code is under source control in the same repository as the development and production systems
  • Make sure all of the following are included in source control:

    • app/etc/config.php
    • generated directory (and subdirectories)
    • pub/media directory
    • pub/media/wysiwyg directory (and subdirectories)
    • pub/static directory (and subdirectories)
  • Must have a compatible PHP version installed
  • Must have Composer installed
  • It has Magento file system ownership and permissions set as discussed in Prerequisite for your development, build, and production systems.

The build system does not need any of the following:

  • Magento database connection
  • Magento software installed (only the code must be present)

The build machine can be on its own host or on the same host as an installed Magento system.

Configure the build machine

The following sections discuss how to configure the build machine.

Install Composer

First, check if Composer is already installed:

In a command prompt, enter any of the following commands:

  • composer --help
  • composer list --help

If command help displays, Composer is already installed.

If an error displays, use the following steps to install Composer.

To install Composer:

  1. Change to or create an empty directory on your Magento server.

  2. Enter the following commands:

    1
    
    curl -sS https://getcomposer.org/installer | php
    
    1
    
    mv composer.phar /usr/local/bin/composer
    

For additional installation options, see the Composer installation documentation.

Install PHP

Install PHP on CentOS or Ubuntu.

Set up the build system

To set up the build system:

  1. Log in to the build system as, or switch to, the Magento file system owner.
  2. Retrieve the Magento code from source control.

    If you use Git, use the following command:

    1
    
    git clone [-b <branch name>] <repository URL>
    
  3. Change to the Magento root directory and enter:

    1
    
    composer install
    
  4. Wait for Magento dependencies to update.
  5. Set ownership:

    1
    
    chown -R <magento file system owner name>:<web server username> .
    

    For example,

    1
    
    chown -R magento_user:apache .
    
  6. If you use Git, open .gitignore in a text editor.
  7. Start each of the following lines with a # character to comment them out:

    1
    2
    3
    4
    5
    6
    
     # app/etc/config.php
     # pub/media/*
     # generated/*
     # pub/media/*.*
     # pub/media/wysiwyg/*
     # pub/static/*
    
  8. Save your changes to .gitignore and exit the text editor.
  9. If you use Git, use the following commands to commit the change:

    1
    
    git add .gitignore && git commit -m "Modify .gitignore for build and production"
    

    See the .gitignore reference for more information.

Related topics