Skip to main content
Version: 8.1

Ignition 8 Deployment Best Practices

This page describes the process of deploying Ignition applications and provides best practices for setting up your development and testing workflow. Having a solid deployment workflow allows for better change management, minimizes mistakes, and leads to a more productive team.

The following information is aimed at Ignition users who are looking to set up a scalable, flexible, enterprise-grade system. Whether you start from a different architecture or model and move toward this, these guidelines are not intended as an all-or-nothing proposition. Many installations could benefit from employing even a subset of these best practices. For any enterprise-grade system, Inductive Automation highly recommends employing all the techniques covered in this document.

Workflow​

Deployments should be treated as part of a development workflow, not as an afterthought. Your workflow will usually include at least three environments: Development, Testing, and Production. In that case, the workflow might look like this:

  1. Developers work on bugs and features in a Development environment.
  2. Once features are implemented, they are merged into the testing branch and deployed to the Testing environment for quality assurance and testing.
  3. After testing is complete, the development branch is merged into production and then deployed to the Production environment.

Before taking a closer look at each environment, it is important to look at Ignition’s configuration in more detail to better understand deployment.

Ignition’s Configuration​

Ignition is a server-based software and is installed on a central server, which means all of Ignition’s configuration is stored on the server. It is all in one place to install, license, configure, backup, and manage. Client applications are downloaded from the Ignition server (Vision) or are native HTML (Perspective) and as a result are automatically updated as new changes are deployed. That way you don’t have to worry about installing, licensing, or deploying changes to individual clients, especially if there are hundreds of clients. For deployment model, focus solely on the server.

When you are developing in Ignition, there are 4 main areas of configuration:

  • Gateway Configuration
  • Tags
  • Images
  • Projects

Each of these areas are stored differently on the server. The Gateway backup contains the configuration for all of these but some can also be handled individually. It is critical to understand the differences and how you interface with them when deploying changes.

Gateway Configuration​

The Gateway configuration area includes all of the different settings, profiles, and connections you edit in the Configuration section of the Gateway webpage. This is where most of the settings that affect the whole Gateway are set up. You can add database and device connections, users and roles, adjust alarm settings, set up security, create a schedule for a Gateway backup to be taken automatically at specific times, and much more. The list of configuration options on the left menu changes based on what modules are installed on your Gateway.

All of these settings are stored inside of Ignition’s internal SQLite database. They are only accessible by the Gateway user interface. Outside of a full Gateway backup, you cannot export or import these settings from Gateway to Gateway. Ignition’s EAM Module currently doesn’t support moving these settings from Gateway to Gateway either. This makes it tricky to work with when developing your deployment strategy since all changes must be made manually. It is also difficult to track changes since everything is inside of a SQLite database.

Gateway backups are not normally used when migrating changes because they are all-or-nothing. Different environments often have separate Gateway configuration settings for items such as devices, databases, and authentication.

note

We recommend creating a process that all developers follow to track changes of these settings outside of Ignition and to document the differences in these settings within each environment (development, testing, and production).

Tags​

Tags are an important part of most projects. Tags are points of data and may have static or dynamic values that come from an OPC address, an expression, or a SQL query. Tags provide a consistent data model throughout Ignition and offer the easiest way to get up and running creating real-time status and control systems. However, despite their fast initial learning curve, tags offer a great amount of power in system design and configuration. The ability to aggregate tags from a variety of installations means you can build widely distributed SCADA systems more easily than ever before with a high level of performance and relatively simple configuration.

Tags are not part of an Ignition project. Rather, projects simply reference tags. Tags are stored inside of Tag Providers. A Tag Provider is a collection of tags and can be local or remote. An Ignition server can have one or more Tag Providers associated with it and can provide logical groupings of tags. By default, Ignition is shipped with a local Tag Provider called “default”. Local Tag Providers are stored inside of Ignition’s internal SQLite database. Tags are configured inside of the Ignition Designer in the Tag Browser panel.

Ignition can export and import tag configurations to and from a JavaScript Object Notation (JSON) file format. You can import Extensible Markup Language (XML) or Comma Separated Value (CSV) file formats as well, but Ignition will convert them to JSON format.

Tags can also be moved through Ignition’s EAM Module from Gateway to Gateway. Tags are much easier to work with when deploying changes. However, tags are still stored inside of Ignition’s internal SQLite database and steps must be taken to track changes of tags. The process of exporting tags can be done automatically using a Python script in Ignition. You can either use Ignition’s EAM Module to deploy changes from development to testing to production, or manually export/import through the Ignition Designer.

Images​

The Image Management tool, available from Tools > Image Management in the Ignition Designer, provides an interface to upload, download, or select images. Images such as PNGs, JPGs, GIFs, and SVGs can be uploaded in the Image Management Tool and used inside of Vision or Perspective. These images are stored inside of Ignition’s internal SQLite database and are not a part of an Ignition project. Instead, projects simply reference images.

Images cannot be moved through Ignition’s EAM Module from Gateway to Gateway. Continuously exporting images to a folder and committing the folder to a source control repository to track changes of images. This process cannot be done automatically and requires manual intervention. You have to export/import images through the Ignition Designer when deploying changes from development to testing to production.

Projects​

Projects are the main unit of configuration in Ignition. Projects hold all the designed elements that do the real work. Your projects can hold both interactive elements like controls, charts, reports, entry forms, and more. Projects also hold persistent elements like historical loggers, and automated reports. An Ignition project includes but is not limited to:

  • Vision Windows and Templates: Screens for user interaction.
  • Perspective Views: Screens for users interaction.
  • Transaction Groups: A bi-directional link between databases and PLCs.
  • Reports: PDF reports for displaying and recording data.
  • Scripts: Timer and event-based scripts used throughout the system.
  • Alarm Notification Pipelines: Pipelines that notify users of alarm conditions.
  • General settings and properties: Settings that control access, resource connections, layout, timing, and more.

These elements are created and configured in the Ignition Designer. The projects are then viewed in the runtime (Vision Clients or Perspective Sessions). You can create as many projects as you want where users can jump between projects on the fly or open multiple projects at the same time.

Projects are stored in the file system as a series of folders and files. Some files are binary, while others are stored as plain text files. Projects are stored inside the data directory on the Ignition server.

Linux
/var/lib/ignition/data/projects
Windows
C:\Program Files\Inductive Automation\Ignition\data\projects

Since projects are stored in the file system, it is possible to use best-in-class source control tools outside of Ignition to track changes of projects, such as Git. Changes in the Ignition Designer get updated in the file system. Ignition also continuously monitors the file system for changes and automatically reads in the changes.

Projects can also be imported and exported through a file (.zip extension) and moved from Gateway to Gateway using EAM.

note

We recommend using an external source control tool to track project changes, such as Git. You can turn the project folder into a repository and use tools to deploy changes from Development to Testing to Production environments outside of Ignition.

Change Track Summary​

Gateway ConfigurationTagsImagesProjects
Change TrackingManual Documentation and Gateway Backup, then commit to Version ControlTag Export, then commit to Version Control Image Export, then commit to Version ControlNo export required. Auto-commit project folder changes to Version Control
BackupsGateway BackupGateway BackupGateway BackupGateway Backup

Deployment Environments​

Now that you have a good idea of how Ignition’s configuration is stored and works, let’s take a closer look at each environment to see what are the most efficient ways to deploy to each one. In the following reference architecture you will see the Ignition Development, Testing, and Production environments, along with Ignition’s EAM Module and a source control system such as GitLab.

Development Environment​

The Development environment is the environment in which active Ignition development is occurring. This environment is the first step of the workflow where developers are working on bug fixes and new features before introducing them to the Production environment. It is very handy to have a separate branch in your source control system called development to represent your development environment.

There are two main camps on how to approach the Development environment:

  • Shared development environment: A shared development environment is a central Ignition server dedicated to development that all developers work on.
  • Individual workstations as their own development environment: An individual development environment is one where each developer has Ignition installed on their workstation with their branch of the project.

There are pros and cons to each approach. Ignition supports concurrent development and most customers tend to go with a shared development environment so nothing has to be installed on each developer’s workstation. They can instead launch the Designer from the development server. If an individual development environment approach is taken, each developer’s workstation will need to have its Ignition Gateway configured separately. Regardless of the approach, changes will need to be committed to the source control repository and deployed through the workflow.

Testing Environment​

Once the features are implemented and considered fairly stable, they get merged into the testing branch and then deployed to the testing environment. This is when quality assurance begins. Testers go to testing servers and verify that the project works as intended.

It is very handy to have a separate branch in your source control system called testing to represent your testing environment. It will allow developers to deploy multiple branches to the same server simultaneously, simply by merging everything that needs to be deployed to the testing branch. It will also help testers understand what exactly is on testing servers at the moment, just by looking inside the testing branch.

Production Environment​

Once the feature is implemented and tested, it can be deployed to production. The production environment is also known as live, particularly for servers, as it is the environment that users interact with directly.

note

We recommend always deploying major releases to production at a scheduled time that the whole team is aware of.

Considerations​

Consider the following factors when deciding your deployment environment approach:

  • You do not need the development and testing environments to be license. You can simply use Ignition’s trial license. Some customers elect to purchase licenses for these environments to remove having to reset every 2 hours. The choice is completely yours.

  • It is extremely important to understand the differences in Ignition's configuration for each environment. They cannot be exactly the same. The production environment is communicating to live data sources such as devices and SQL databases and more. You may not want your development and testing environments connected to the same live data sources. You also may have different authentication sources or permission models on the development and testing environments. The following is a short list of common differences:

    • Devices or PLC connections: Using Ignition’s native drivers.

    • OPC UA connections: Connecting to third-party such as Kepware or a PLC directly.

    • Database connections: Connecting to a SQL database such as MySQL or MS SQL.

    • Authentication profiles: Different authentication sources or especially a different admin or root password. Sometimes you want to lock out access to the Designer and Gateway in the production environment.

    • Alarm notification profiles: Connections to email, SMS, or voice.

    • Redundancy settings: Often you have redundancy on production and not development or testing.

      caution

      We recommend keeping the same connections on each environment, but with different IP addresses or settings behind the scenes. That way any resources dependent on knowing the name will still function from environment to environment. For example, you may have a dedicated SQL database for each environment. All three Ignition Gateways will have the same database connection by name, but they will point to their dedicated SQL database that may be local or remote. Screens or named queries using that connection will function across all environments since they referencing the connection by name. Document these differences to ensure you don’t deploy a change to production that points to a development or testing system.

  • Since you want to have access to live data in all environments to understand limitations or performance issues, you'll need to find a process for simulated real device data. For example, simulated data can help you discover PLCs that don’t support more than 1 connection or would get saturated with multiple Ignition servers polling the same tags multiple times. There are several ways to accomplish getting access to real data:

    • OPC UA: You can connect your development and testing environments to your production environment through OPC UA. The development environment would have the same OPC server name but it would point to production instead of pointing to itself. Be careful, as it is possible for development and testing to affect production, especially with writing to tags.
    • MQTT: This is the recommended way of getting live data to all environments. You can have your production environment publish all tag data to a central MQTT server using Ignition’s MQTT Transmission Module. All 3 environments can subscribe using Ignition’s MQTT Engine Module and tags are automatically discovered. Each environment can subscribe without affecting the other. Again, be careful about potentially writing to live PLCs. MQTT servers have ACLs (access control lists) you can define to make the development and testing environments read-only if needed.
    • Gateway Network: You can connect your development and testing environments to your production environment through Ignition’s Gateway Network and set up remote tag providers. The development environment would have the same tag provider name but it would point to production instead of being local. Again be careful about potentially writing to live PLCs. Ignition’s Gateway Network has service-level security to make the development and testing environments read-only if needed. This method is not generally recommended.
    • Device Simulation:
      • Programmable Device Simulator: This is perhaps the best option if you don’t need live PLC data. Instead, you can use Ignition’s programmable device simulator to simulate PLC data. The simulator allows you to define any tag path you want along with static or dynamic values. Your development and testing environments will use the simulator while the production environment will use the real PLC. As long as you keep the name of the device the same, the tags will be identical across all systems. See the Programmable Device Simulator page for more details.
      • SFCs: If you need more advanced device simulation, SFCs offer deep flexibility. The Programmable Device Simulator provides configurable signals, but the signals don’t change based on a user’s actions. SFCs, paired with memory tags, provide a great way to simulate basic PLC functionality like HOAs and valve statuses, flows, and more.
      • PLC Software Simulator: Many PLC manufacturers offer a soft PLC/emulator that can run a real PLC program. If Ignition can connect to the software via OPC, this can be a good option to have the real PLC program with all the tags running in a system that’s completely disconnected from the real equipment.
    • Additional PLCs: If you have a system with a small number of PLCs, it can sometimes make sense to have separate physical PLCs for the development and QA environments, especially if PLC programming changes may be rolled out at the same time as Ignition project changes.
  • Each environment typically has its own dedicated SQL database. You don’t want development and testing working off the same database as production. Generally, this is not a problem for Ignition’s built-in history, alarming, auditing, and transaction groups. However, if you build your own custom tables and interface Ignition with those tables, you'll have to think about how to ensure those tables (structure) and possible data exist in all environments. Commonly, this is done manually by developers by running the same DDL statements in all environments. In some cases, there are tools or replication techniques that can be used by the database system to automate this process. You need to come up with a plan to ensure all three environments have the same structure and possibly data such as lookup tables.

Enterprise Administration Module​

The EAM module provides a secure and intuitive way to manage many Ignition installations from one location. It is ideal for large enterprises that deploy multiple Gateways across vast geographical distances, but even companies with a few Ignition Gateways on a single plant floor can benefit from its ability to monitor performance, and automate backup and recovery from a central location.

With the EAM module installed, an Ignition Gateway can function as the central Controller Gateway that connects with, monitors, and manages any number of remote Agent Gateways. Use the Controller Gateway to coordinate and automate many administrative tasks for Agent Gateways:

  • Check health and diagnostics
  • Assigning, updating, activating, and deactivating licenses
  • Deploying new and updated modules
  • Disaster recovery
  • Remote backups
  • Remote Ignition upgrade

EAM Controller Gateway and Best Practices​

It's recommend to either set up a dedicated EAM Controller Gateway or use the development environment as the Controller. It is advised to use EAM for health and diagnostics, licenses, backups and disaster recovery, and upgrades. EAM provides the ability to move projects and tags from one environment to another. You can use EAM to move tags from one environment to another but it is not advised to use EAM to move projects since that is best handled through a source control system.

Source Control System​

A Source Control System is a version control system designed to track changes in source code and other text files during the development of a piece of software, such as Ignition. This allows the user to retrieve any of the previous versions of the original source code and the changes which are stored. Source control systems provide many benefits:

  • Maintain multiple versions of code
  • An ability to go back to any previous version
  • Developers can work in parallel
  • Audit traceability with a clear picture of whom, which, when, where, and what the changes are
  • Synchronize the code
  • Copy/Merge/Undo the changes
  • Find out the difference between versions
  • Provides full backup without occupying much space
  • Review the history of the change
  • Capable for both small and large-scale projects
  • Ability to share and work on the code across the globe

There are many source control systems and we recommend using the one you are most comfortable with. GitLab and Git is a very popular open source control system.\

Source Control and Ignition​

We recommend storing all Ignition resources in a source control system including projects, tag exports, images, and Gateway backups. Projects are best managed through a source control system since they are stored in the file system. It is extremely easy to push and pull projects to and from a source control system. However, it is important to define a process for storing and deploying tags, images, and Gateway configuration since they are stored in Ignition’s internal SQLite database and not individual files.

It is extremely easy to get started using a source control system. We recommend installing a source control system on a dedicated server or VM, or using an existing source control system that’s already set up in your company. Simply set up a project in the source control system for each unique Ignition production environment.

Project Branches​

A branch is a version of a project’s working tree. You create a branch for each set of related changes you make. This keeps each set of changes separate from each other, allowing changes to be made in parallel, without affecting each other.

After pushing your changes to a branch, you can:

  • Create a merge request to merge changes from one branch to another
  • Perform inline code review and preview changes
  • Discuss your implementation with your team

Since there are three separate environments in your workflow, it is recommended to set up three separate branches for each project:

  • Main: The main branch used for production
  • Testing: The branch used for testing. No development occurs on this branch but changes are merged from development to testing for QA.
  • Development: The branch used for active development

Now that you have your project and branches set up, let’s define how to commit our changes to the repository.

Committing and Deploying Changes​

Active development is occurring in the development environment. Once the features are implemented and considered fairly stable, it is time to merge them into the testing branch and then deploy them to the testing environment. We recommend storing all Ignition configuration to the repository. Let’s go through each configuration item outlined above: projects, tags, images, and Gateway configuration.

Projects​

Projects are stored in the file system which makes it easy to commit to a source control system. Simply make the Ignition project folder the repository. You can find the projects folder on the Ignition server in this location:

Linux
/var/lib/ignition/data/projects
Windows
C:\Program Files\Inductive Automation\Ignition\data\projects

If the repository on the source control system is empty, simply commit the existing folder to the repository. If no projects exist on the development system, simply pull the repository from the server to add the projects. Make sure to ignore the .resources folder in your repository. You don’t want that directory committed to the repository since it will be unique for each system.

As changes are being made, commit and push the changes from the development environment to the repository using the proper tools (GUIs, command line tools like Git). When you are ready to deploy the changes to testing, you can merge the changes from development to testing and pull the changes from the repository to the projects folder on the testing server. See the GitLab example for more details.

Tags​

Tags are stored inside of Ignition’s internal SQLite database so they don’t exist as files that can be committed to the repository. However, you can export tags to a file. The two methods for storing tags to the source control system are to manually export or use an Ignition Python script to automatically save the file to the repository. In the manual method, the developer can export tags to a JSON file in the Ignition Designer and save the file in the project folder when they are ready to push their changes to the repository. With this method, you can export only when needed. Conversely, in the automatic method, you can add a Python script on the Update Gateway Event script that executes on every Designer save to export tags to a JSON file and save the file in the project folder. See the GitLab example for more details on the script.

Regardless of the method, it is important to commit the changes to the repository in order to track changes from version to version. We recommend storing the tags.json file to the following location:

<IGNITION INSTALL DIRECTORY>/data/projects/tags.json

The file will be ignored by Ignition. Then, when you are ready to deploy the changes to testing, you can merge the changes from development to testing and either use Ignition’s EAM module to deploy tag changes or import the tags into the testing server in the Designer. If using the EAM module to deploy tag changes, see the EAM in the Designer page for more information.

Images​

Images are stored inside of Ignition’s internal SQLite database so they don’t exist as files that can be committed to the repository. However, the developer can export images in the Image Management Tool in the Ignition Designer to a folder inside of the projects folder when they are ready to push their changes to the repository. Make sure to select all images and folders in the Image Management Tool. We recommend creating a .images directory in the projects directory, and storing the images in the newly created directory:

<IGNITION INSTALL DIRECTORY>/data/projects/.images

Generally, you would not want to create folders in the projects directory since the Gateway assumes every folder is a project. However the Gateway will ignore any hidden directories, or those that start with a “.” character.

When you are ready to deploy the changes to testing, you can merge the changes from development to testing and import the images into the testing server in the Designer.

Gateway Configuration​

Gateway configuration is stored inside of Ignition’s internal SQLite database and doesn’t have any export and import functions. With that being said, we recommend storing the latest Gateway backup (.gwbk) to the repository. Here the developer can save a Gateway backup in the Gateway configuration web page when they are ready to commit their changes to the repository.

We recommend creating another hidden directory in the projects directory to store the latest Gateway backup, similar to how images are stored in the previous section. Call this new directory “.gateway_backups”:

<IGNITION INSTALL DIRECTORY>/data/projects/
.gateway_backups/Ignition-backup-XXXXXXXX-XXXX.gwbk

When you are ready to deploy the changes to testing, you can merge the changes from development to testing and manually make the necessary Gateway configuration changes on the testing server.

Define Your Workflow and Process​

You need to define your own workflow and process that is understood by everyone. Make sure to address all of the questions listed above. Document the process and provide each developer with a cheat sheet. We also recommend creating a checklist when deploying to ensure accuracy.

GitLab Example​

This section describes how to configure version control via GitLab. The process involves two procedures.

If Git is already installed, and your project already resides in a git repository, then skip the Installing Git and Publishing Project section.

Installing Git and Publishing Project​

  1. Install the Git Command Line Tools:
    • Linux: from terminal, type sudo apt-get install git
    • Windows: https://git-scm.com/download/win
      caution

      The rest of this guide assumes a Linux environment. You may need to adjust commands and scripts in later steps to run on Windows

  2. To identify yourself in Git, run the following commands:
git config --global user.name "YourUserName"
git config --global user.email "your@email.addr"

To publish projects to the repository:

  1. Navigate to the following directory: <IGNITION INSTALL DIRECTORY>/data/projects

  2. Add a .gitignore file to ignore the .resources directory: nano .gitignore

  3. Add the following line to the .gitignore file: .resources/

  4. Save the file. Now run the following commands to initialize and commit the repository: git init git remote add origin http(s)://root:TOKEN@URL/root/PROJECT.git git add . git commit -m "Initial commit" git push -u origin main

  5. After the initial commit, set the branch to main for future pushes. git branch --set-upstream-to=origin/main

You have now successfully committed your projects. Next, you need to export and commit tags, images, and Gateway configuration. For tags, export the tags from the Designer into a tags.json file. For images, use the Image Management Tool in the Designer to export all images to a folder called “images”. For Gateway configuration, simply make a Gateway backup. Store all the file and folders into the projects directory. Once added, use the following commands to commit them to the repository:

NOW=$(date +"%m-%d-%Y %H:%M:%S") git add . git commit -m "Designer save @ $NOW" git push origin

Setting Up Version Control​

  1. Install GitLab. Follow the GitLab Install instructions to install GitLab on a central server or VM.
  2. Setup your Root Password. You will use this root user when using Git.
  3. Generate a Personal Access Token. Follow the GitLab Personal Access Token instructions below to create a token for auto-publishing. Make sure to check all scopes.
  4. Set up a new project (repository) from the Dashboard by creating a new project and entering a desired name. The project will be empty by default.
  5. Using GitLab's web interface, create a development and testing branch, based off of the main branch (or the branch created in the Installing Git and Publishing Project procedure.) Follow these instructions to automatically commit to the main branch.
  6. Navigate to the following directory to install Ignition on dedicated development and testing machines or VMs:
    <IGNITION INSTALL DIRECTORY>/data
  7. Remove the projects folder that already exists. It is empty since it is a fresh install. Once removed, run the following commands in that directory:
    git clone http(s)://root:TOKEN@URL/root/PROJECT.git projects
  8. Navigate into the projects folder now that it is created again. Run the following commands to switch to the development or testing branch:
    git checkout development  git branch --set-upstream-to=origin/development
    note

    Switch “development” with “testing” for the testing branch on the testing server.

  9. Make sure to import the tags and images in the Designer. You can either use EAM to import tags or import manually in the Designer.
  10. Next, manually merge in all Gateway configurations, such as database or device connections and authentication profiles.
  11. Now that you have the development environment set up and the projects have been pulled from the development branch, you need to set up Ignition to automatically commit changes when a developer presses save in the Ignition Designer. Start by creating a batch/shell script in the data directory called “git-auto-commit.sh” or “git-auto-commit.bat”. For example on Linux:
    /var/lib/ignition/data/git-auto-commit.sh
    The file will contain the following lines:
    cd /var/lib/ignition/data/projects NOW=$(date +"%m-%d-%Y %H:%M:%S") git add . git commit -m "Designer save @ $NOW" git push origin
    note

    The above script may need to be modified on Windows environments

  12. Make sure the file has executable permissions.
  13. Open the Ignition Designer and select Project > Gateway Events > Update.
  14. Add the following script to call the batch/shell script and commit the changes to the repository on every save. See the Gateway Event Scripts page for more details.
    import time time.sleep(5) system.util.execute(["/var/lib/ignition/data/git-auto-commit.sh"] )
  15. Save the project and check out the repository in GitLab to see the commit.
  16. Next, it can be handy to automatically export tags and save them to the repository as part of the save process. For that, simply adjust the Gateway Event Update script to the following:
    import time
    filePath = "/var/lib/ignition/data/projects/tags.json"
    system.tag.exportTags(filePath=filePath, tagPaths=["[default]"])
    time.sleep(5)
    system.util.execute(["/var/lib/ignition/data/git-auto-commit.sh"])
    note

    Adjust the tag paths to include all of your tag providers you want to export. Tags will get exported and saved to a file called tags.json inside of the projects directory on every save. The commit occurs after the export so the file will get committed to the repository.

  17. Once you are done with your development you need to deploy the changes to the testing environment. First, merge changes from the development branch to the testing branch inside GitLab.
  18. Open the UI and create a merge request from the development branch to the testing branch. By default, it will select the master branch so make sure to change that to the testing branch. Make sure to uncheck the “Delete source branch” checkbox so you don’t remove the development branch. See GitLab’s documentation for more details.
  19. Once the merge request is created, you need to approve the request and actually merge the changes to testing. Once the changes are merged, deploy your changes to Ignition on the testing server.
    1. Deploying Projects: For projects, you need to pull the changes from the repository. Run the following command on the testing server. Once the changes are pulled down, Ignition will automatically update the project resources. Clients will update automatically. If you already had the Ignition Designer open, you will need to press File > Update Project to pull those changes from the server. git pull
    2. Deploying Tags: The tags.json export file will get pulled from the previous step. You can either manually import the tags into testing or use EAM to deploy tag changes.
    3. Deploying Images: The images will get pulled from the repository from the previous step. You will have to manually import the images into the Image Management Tool in the Ignition Designer.
    4. Deploying Gateway Configuration: You will have to manually apply any Gateway configuration changes to the testing environment. This includes changing settings, adding database connections, adding device connections, and more. This is arguably the hardest part of deploying changes from development to testing and from testing to production.
danger

DO NOT restore the Gateway backup when deploying testing or production as there are differences in each environment.