Skip to content

Commit

Permalink
First version (0.0.1), for review by PMC
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray committed Jun 11, 2020
1 parent 57b5b55 commit a55ca35
Show file tree
Hide file tree
Showing 11 changed files with 2,099 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_Store
node_modules/
out/
*.vsix
51 changes: 51 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension Alone",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
},
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: watch"
}
]
}
27 changes: 27 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process

// A task runner that calls a custom npm script that compiles the extension.
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"presentation": {
"reveal": "always"
},
"group": {
"isDefault": true,
"kind": "build"
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
]
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 0.0.1 (10-Jun-2020)
* Initial version.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,25 @@
# intersystems-servermanager
VS Code helper extension defining connections to InterSystems servers
# InterSystems® Server Manager
A VS Code helper extension that contributes settings to define connections to InterSystems servers.

For example:
```json
"intersystems.servers": {
"myLocal": {
"webServer": {
"host": "127.0.0.1",
"port": 52773,
"scheme": "http"
},
"comment": "My local IRIS instance"
},
"dev": {
"webServer": {
"host": "devhost.myorg",
"port": 52773,
"scheme": "http"
},
"comment": "Shared development server"
},
"/default": "myLocal"
}
```
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a55ca35

Please sign in to comment.