Skip to content

Commit

Permalink
Merge pull request #18 from jupyterkat/secrets
Browse files Browse the repository at this point in the history
makes use of webhook secrets
  • Loading branch information
AffectedArc07 authored Apr 23, 2023
2 parents 5d3a6a8 + 92e2b98 commit 48538d3
Show file tree
Hide file tree
Showing 32 changed files with 1,457 additions and 1,154 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = crlf
end_of_line = lf
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* text=auto

*.rs text eol=lf
*.toml text eol=lf
*.txt text eol=lf
*.md text eol=lf
76 changes: 38 additions & 38 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
// 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": [
{
"name": "(Windows) Attach",
"type": "cppvsdbg",
"request": "attach",
"processId":"${command:pickProcess}"
},

{
"name": "(Windows) Launch MDB",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/mapdiffbot2.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "externalTerminal"
},

{
"name": "(Windows) Launch IDB",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/icondiffbot2.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "externalTerminal"
},

]
{
// 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": [
{
"name": "(Windows) Attach",
"type": "cppvsdbg",
"request": "attach",
"processId":"${command:pickProcess}"
},

{
"name": "(Windows) Launch MDB",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/mapdiffbot2.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "externalTerminal"
},

{
"name": "(Windows) Launch IDB",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/icondiffbot2.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "externalTerminal"
},

]
}
Loading

0 comments on commit 48538d3

Please sign in to comment.