Skip to content
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

Open
gjsjohnmurray opened this issue Jun 16, 2023 · 2 comments
Labels
enhancement New feature or request priority/backlog

Comments

@gjsjohnmurray
Copy link
Contributor

Related to intersystems-community/intersystems-servermanager#187

@gjsjohnmurray gjsjohnmurray added the enhancement New feature or request label Jun 16, 2023
@gjsjohnmurray
Copy link
Contributor Author

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"
  },
}

@dpaganisc
Copy link

dpaganisc commented Jun 30, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request priority/backlog
Projects
None yet
Development

No branches or pull requests

4 participants
@gjsjohnmurray @isc-bsaviano @dpaganisc and others