forked from microsoft/sample-app-aoai-chatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor app backend to async (microsoft#460)
- Loading branch information
1 parent
8b91c21
commit 28f962c
Showing
17 changed files
with
944 additions
and
660 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
{ | ||
// 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: Sample UI Backend", | ||
"name": "Python: Sample App Backend", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "flask", | ||
"module": "quart", | ||
"cwd": "${workspaceFolder}", | ||
"env": { | ||
"QUART_APP": "app:app", | ||
"QUART_ENV": "development", | ||
"QUART_DEBUG": "0" | ||
}, | ||
"args": [ | ||
"run", | ||
"--no-reload", | ||
"-p 50505" | ||
], | ||
"console": "integratedTerminal", | ||
"justMyCode": false, | ||
"envFile": "${workspaceFolder}/.env", | ||
"args": ["run", "--no-debugger", "--no-reload", "-p 5000"], | ||
"justMyCode": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.