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| Flag | Default | Description |
|---|---|---|
--file | (stdout) | Output file path |
Import settings
apxy setup settings import --file ./apxy-config.json| Flag | Default | Description |
|---|---|---|
--file | — | Path 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 teammatesBackup before updates
Save your configuration before upgrading APXY:
apxy setup settings export --file ./backup-$(date +%Y%m%d).jsonConsistent environments
Import the same configuration across multiple machines:
apxy setup settings import --file ./standard-config.jsonLast updated on