# clouddriver **Repository Path**: aliyun/clouddriver ## Basic Information - **Project Name**: clouddriver - **Description**: read and write operations across cloud providers - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-08 - **Last Updated**: 2025-08-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Spinnaker Cloud Provider Service ------------------------------------ [![Build Status](https://api.travis-ci.org/spinnaker/clouddriver.svg?branch=master)](https://travis-ci.org/spinnaker/clouddriver) This service is the main integration point for Spinnaker cloud providers like AWS, GCE, CloudFoundry, Azure etc. ### Developing with Intellij To configure this repo as an Intellij project, run `./gradlew idea` in the root directory. Some of the modules make use of [Lombok](https://projectlombok.org/), which will compile correctly on its own. However, for Intellij to make sense of the Lombok annotations, you'll need to install the [Lombok plugin](https://plugins.jetbrains.com/plugin/6317-lombok-plugin) as well as [check 'enable' under annotation processing](https://www.jetbrains.com/help/idea/configuring-annotation-processing.html#3). ### Debugging To start the JVM in debug mode, set the Java system property `DEBUG=true`: ``` ./gradlew -DDEBUG=true ``` The JVM will then listen for a debugger to be attached on port 7102. The JVM will _not_ wait for the debugger to be attached before starting Clouddriver; the relevant JVM arguments can be seen and modified as needed in `build.gradle`.