Set SDK Environment
Setting up the environment for your application is critical. We strongly recommend you to use this setting carefully. The default environment is set to production, which means that the VWO SDK will send events to the VWO server for tracking visitors and conversions along with actions like bucketing variation, checking eligibility of a user to become part of a campaign, assigning a variation to a user, and so on.
Environment | Type | Default |
---|---|---|
isDevelopmentMode | Boolean | false |
NOTE
You must set the environment to isDevelopmentMode: true if you're experimenting with the SDK.
is_development_mode = true
vwo_client_instance = VWO.new(account_id, sdk_key, custom_logger, UserStorage.new, is_development_mode, settings_file)
Updated over 3 years ago