Skip to content

Commit

Permalink
Merge pull request #1246 from mountaindude/1245
Browse files Browse the repository at this point in the history
1245
  • Loading branch information
mountaindude authored Oct 1, 2024
2 parents 95ed2bd + 0012f6d commit 3041f30
Show file tree
Hide file tree
Showing 57 changed files with 7,088 additions and 5,392 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ src/node_modules/*
src/config/production.json
src/config/production.yaml
src/config/production-test1.yaml
src/config/production_template_filledin.yaml
src/config/prod.yaml
**/schedule.yaml
src/config/schedule.json
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"arrowParens": "always",
"bracketSpacing": true,

"useTabs": false
"useTabs": false,
}
71 changes: 35 additions & 36 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,36 @@
{
// 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"]
}
]
}
// 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"]
}
]
}
Loading

0 comments on commit 3041f30

Please sign in to comment.