-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1200 from mountaindude/1199
1199
- Loading branch information
Showing
63 changed files
with
21,977 additions
and
1,737 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"tabWidth": 4, | ||
"semi": true, | ||
"singleQuote": true, | ||
"printWidth": 140, | ||
"arrowParens": "always", | ||
"bracketSpacing": true, | ||
|
||
"useTabs": false | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"program": "${workspaceFolder}/src/butler.js", | ||
"runtimeVersion": "20", | ||
"cwd": "${workspaceFolder}/src", | ||
"env": { | ||
"NODE_CONFIG_DIR": "${workspaceFolder}/src/config", | ||
"NODE_ENV": "production" | ||
}, | ||
"args": [ | ||
"--configfile", | ||
// "config/production.yaml", | ||
"config/production_template.yaml", | ||
// "--new-relic-account-name", | ||
// "'First NR account'", | ||
// "--new-relic-account-id", | ||
// "ACCOUNTID", | ||
// "--new-relic-api-key", | ||
// "APIKEY", | ||
|
||
// "-c", | ||
// "./config/config-gen-api-docs.yaml", | ||
// "--no-qs-connection" | ||
], | ||
"outFiles": ["${workspaceFolder}/**/*.js"] | ||
} | ||
] | ||
} | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"program": "${workspaceFolder}/src/butler.js", | ||
"runtimeVersion": "20", | ||
"cwd": "${workspaceFolder}/src", | ||
"env": { | ||
"NODE_CONFIG_DIR": "${workspaceFolder}/src/config", | ||
"NODE_ENV": "production" | ||
}, | ||
"args": [ | ||
"--configfile", | ||
"config/production.yaml", | ||
// "config/production_template.yaml", | ||
// "config/production_template_filledin.yaml", | ||
// "--new-relic-account-name", | ||
// "'First NR account'", | ||
// "--new-relic-account-id", | ||
// "ACCOUNTID", | ||
// "--new-relic-api-key", | ||
// "APIKEY", | ||
|
||
// "-c", | ||
// "./config/config-gen-api-docs.yaml", | ||
// "--no-qs-connection" | ||
], | ||
"outFiles": ["${workspaceFolder}/**/*.js"] | ||
} | ||
] | ||
} |
Oops, something went wrong.