Question
· Jul 5, 2021

How to save server connection credentials in Visual Studio Code?

Hi,

Every time I have to enter password in Visual Studio Code. Is there any why to save the password in VSCode?

 

Thanks

Product version: IRIS 2020.1
Discussion (3)1
Log in or sign up to continue

Hi Muhammad,

Please follow below steps: (if it's personal instance)

1. Go to "Settings"

2. Search "InterSystems Server Manager"

3. Click "Edit in setting.json"

4. Edit

"intersystems.servers": {     
    "irishealth": {
        "webServer": {
            "scheme": "http",
            "host": "localhost",
            "port": 52773
        },
        "username": "_system",
        "password": "system"
    }
}

Add your password in json,

5. Save "settings.json"

Thanks,