neosrulez/neos-runtimemigrations

There is no license information available for the latest version (1.0.0) of this package.

A Neos Flow package that allows to execute runtime migrations during container startup in CloudRun or similar, once or permanently.

1.0.0 2025-05-14 07:14 UTC

This package is not auto-updated.

Last update: 2025-05-15 05:44:09 UTC


README

A Neos Flow package that allows to execute runtime migrations during container startup in CloudRun or similar, once or permanently.

Installation

Just run:

composer require neosrulez/neos-runtimemigrations

Configuration

# Never execute "flow flow:cache:flush" (for all caches). This will abort further execution.
NeosRulez:
  Neos:
    RuntimeMigrations:
      oneTime:
        - version: '1747203109'
          name: 'Flush cache'
          command: 'flow flow:cache:flushone --identifier Neos.Fusion:Content'
      permanent:
        - version: '1747203160'
          name: 'Create foo.tx in FlowRoot'
          command: 'touch /data/neos/foo.txt'
          async: true

Author