Skip to content
AutoCore1.0.0-rc.1 ยท Release Candidate
1.0.0-rc.1 ยท Release Candidate2 min read

Configuration File

Reference the verified flat installer configuration file and its safe public examples.

The installer accepts a JSON file or a flat YAML file selected with --config. The public sanitized examples use these nine keys:

KeyTypeRequired by the parserSource-backed behavior
configSchemaVersionnumberNo; defaults to 1 for the preflight checkOnly version 1 passes preflight.
editionstringNo in the parser, but required in practiceMust be autocore or eskisehiraraba.
environmentstringNoRetained as operator metadata in examples.
domainstringNoRetained as operator metadata; real domains stay external.
localestringNoExample market metadata.
currencystringNoExample market metadata.
timezonestringNoExample market metadata.
paymentEnabledbooleanNotrue blocks installer preflight.
backupDirectorystringNoUsed as the displayed preflight backup directory.

The parser is intentionally small: it is not the API setup schema. The API setup contract is documented in the first administrator and primary market setup pages.

Verification

Run the installer with an explicit config path and --json. Confirm the returned status and checks before an install or upgrade command.

Code
node "$INSTALLER_DIR/dist/index.js" preflight --config "$CONFIG_FILE" --json

Related articles