Skip to Content
Advanced FeaturesSettings Management

Settings Management

Export your entire APXY configuration (mock rules, filters, redirects, SSL domains, interceptors, scripts, etc.) to a JSON file for backup, sharing, or migrating between machines.

Paid feature — requires a license with import/export capability.

CLI

Export settings

# Export to a file apxy setup settings export --file ./apxy-config.json # Export to stdout apxy setup settings export
FlagDefaultDescription
--file(stdout)Output file path

Import settings

apxy setup settings import --file ./apxy-config.json
FlagDefaultDescription
--filePath to the settings JSON file (required)

Use Cases

Team configuration sharing

Export your debugging setup and share it with the team:

apxy setup settings export --file ./team-config.json # Share team-config.json with teammates

Backup before updates

Save your configuration before upgrading APXY:

apxy setup settings export --file ./backup-$(date +%Y%m%d).json

Consistent environments

Import the same configuration across multiple machines:

apxy setup settings import --file ./standard-config.json
Last updated on