Skip to content

Commit

Permalink
update vscode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
isaric committed Dec 15, 2023
1 parent a2b1056 commit 9a5c43c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.iml
__pycache__
debug.log
venv
28 changes: 21 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "10.66.66.6",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "."
}
],
"justMyCode": true
},
{
"name": "Python: Flask",
"type": "python",
Expand All @@ -12,13 +28,11 @@
"env": {
"FLASK_APP": "main.py",
"FLASK_DEBUG": "1",
"SLACK_API_TOKEN" : "xoxb-241070135347-1373084066946-RKPQf2uO6s7Oi0F8InCgwgkx",
"MONGO_CONNECTION_STRING" : "mongodb://localhost:27017",
"WRITE_SLACK_CHANNEL_ID" : "C0692LSN85R",
"READ_SLACK_CHANNEL_ID" : "G01ASA2SG22",
"SLACK_VERIFICATION_TOKEN" : "u99mYutBGu9ckh4JnOk8YU3P"


"SLACK_API_TOKEN": "xoxb-241070135347-1373084066946-RKPQf2uO6s7Oi0F8InCgwgkx",
"MONGO_CONNECTION_STRING": "mongodb://localhost:27017",
"WRITE_SLACK_CHANNEL_ID": "C0692LSN85R",
"READ_SLACK_CHANNEL_ID": "G01ASA2SG22",
"SLACK_VERIFICATION_TOKEN": "u99mYutBGu9ckh4JnOk8YU3P"
},
"args": [
"run",
Expand Down

0 comments on commit 9a5c43c

Please sign in to comment.