Skip to content

Commit

Permalink
Merge pull request #1200 from mountaindude/1199
Browse files Browse the repository at this point in the history
1199
  • Loading branch information
mountaindude authored Jul 22, 2024
2 parents 8ac7fed + e18ce59 commit aaab73e
Show file tree
Hide file tree
Showing 63 changed files with 21,977 additions and 1,737 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,4 @@ src/config/production_2.yaml
src/config/butler-config.yaml
src/udp_client/udp-client.exe
src/config/production_empty_arrays.yaml
src/config/production_template_filledin.yaml
10 changes: 10 additions & 0 deletions .prettierrc
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
}
10 changes: 0 additions & 10 deletions .prettierrc.yaml

This file was deleted.

71 changes: 36 additions & 35 deletions .vscode/launch.json
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"]
}
]
}
Loading

0 comments on commit aaab73e

Please sign in to comment.