Redgate Change Control 3

Project user settings

All project settings can be overridden in the user settings file, redgate-change-control.user.json.

By default database connection information is stored in the user settings file instead of the project file as it is likely to vary between users. It can be stored in the project settings directly if desired.

Example:

{
    "developmentDatabase": {
        "connectionProvider": {
            "type": "inline",
            "url": "jdbc:oracle:thin:@//localhost:1521/dev",
            "username": "developmentUsername",
            "password": "developmentPassword"
        }
    },
    "deployment": {
        "shadowDatabase": {
            "schema": "TEST_RCA_SHADOW",
            "connectionProvider": {
                "type": "inline",
                "url": "jdbc:oracle:thin:@//localhost:1521/shadow",
                "username": "shadowUsername",
                "password": "shadowPassword"
            }
        }
    }
}

Didn't find what you were looking for?