Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In DSpace 7.2 and above, the Configuration format is now YAML and is located at ./config/config.*.yaml.  If you are upgrading from 7.0 or 7.1 to 7.2 (or later), you will either need to migrate your old configuration file (from Typescript to YAML) or start fresh.  You can migrate your old (7.0 or 7.1) "environment.*.ts" configuration file to the new "config.*.yml" format by running:

Code Block
titleMigrate from environment.*.ts to config.*.yml
yarn env:yaml [relative-path-to-environment.ts] [optional-relative-path-to-YAML]

# For Example, to migrate an old environment.prod.ts file to the new config.prod.yml:
# yarn env:yaml src/environments/environment.prod.ts config/config.prod.yml

...