-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable isfs workspace folders to access container instances of IRIS that use dynamic host port assignment #1168
Comments
This is already possible as long as your workspace also has a client-side folder. I intentionally gave the folder an uppercased name in the example below so that when it appears in the isfs reference it doesn't look like a server name (as those can't contain uppercase). .code-workspace file: {
"folders": [
{
"name": "Project",
"path": "."
},
{
"name": "IRIS Server",
"uri": "isfs://Project/"
}
],
"settings": {
}
} .vscode/settings.json file: {
"objectscript.conn" :{
"active": true,
"docker-compose": {
"service": "iris",
"internalPort": 52773
},
"ns": "USER",
"username": "SuperUser",
"password": "SYS"
},
} |
I’m using the same trick and it works!
In this way you can see both the local folder and remote server in the same workspace, first listed is the local folder.
Da: John Murray ***@***.***>
Data: venerdì, 30 giugno 2023, 12:14
A: intersystems-community/vscode-objectscript ***@***.***>
Cc: Subscribed ***@***.***>
Oggetto: Re: [intersystems-community/vscode-objectscript] Enable isfs workspace folders to access container instances of IRIS that use dynamic host port assignment (Issue #1168)
This is already possible as long as your workspace also has a client-side folder. I intentionally gave the folder an uppercased name in the example below so that when it appears in the isfs reference it doesn't look like a server name (as those can't contain uppercase).
.code-workspace file:
{
"folders": [
{
"name": "Project",
"path": "."
},
{
"name": "IRIS Server",
"uri": "isfs://Project/"
}
],
"settings": {
}
}
.vscode/settings.json file:
{
"objectscript.conn" :{
"active": true,
"docker-compose": {
"service": "iris",
"internalPort": 52773
},
"ns": "USER",
"username": "SuperUser",
"password": "SYS"
},
}
—
Reply to this email directly, view it on GitHub<#1168 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BAWUWCZBGEHLPY7OJI3MZETXN2RJNANCNFSM6AAAAAAZJWHTOY>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
#1471 resolves this in combination with the Server Manager enhancement that it depends on. |
Related to intersystems-community/intersystems-servermanager#187
The text was updated successfully, but these errors were encountered: