Configuration

Learn how to configure Deploymance addons to work with your WHMCS setup.


Addon Settings

Each addon has its own configuration page accessible from the WHMCS admin area. Navigate to Addons → [Addon Name] to access settings.

Configuration File

For advanced configuration, you can create a configuration file in the addon directory.

php
<?php
// config.php
return [
    'debug' => false,
    'log_level' => 'info',
    'cache_ttl' => 3600,
];

Environment Variables

Some settings can be configured via environment variables for easier deployment across environments.

bash
DEPLOYMANCE_DEBUG=false
DEPLOYMANCE_LOG_LEVEL=info
DEPLOYMANCE_CACHE_TTL=3600