Skip to content

Commit

Permalink
Fix .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
dstaudt committed Jul 17, 2019
1 parent 8e91d66 commit d7478fe
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode/
.vscode/*
!.vscode/launch.json
__pycache__/
*.pem
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// 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": "Python: launch sampleFlow.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/sampleFlow.py",
"console": "integratedTerminal"
},
{
"name": "Python: Launch oauth2.py",
"type": "python",
"request": "launch",
"program": "/usr/bin/flask",
"console": "integratedTerminal",
"env": {
"FLASK_APP": "oauth2.py"
},
"args": [
"run",
"--cert=cert.pem",
"--key=key.pem"
]
}
]
}

0 comments on commit d7478fe

Please sign in to comment.