Configure a local agent
You can configure an agent locally to your development environment. You need to specify the compute engine type as Local.
Here is an example of the Python code snippet with the local agent configuration:
user_config = {
"login": {
"username": "infacore",
"password": "<password>",
"env_type": "test",
"url": "https://dmr-us.informaticacloud.com"
},
"compute_engine": {
"type": "local",
"install": True
}
}
}