-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fully azdevify the application (#281)
* azdevify this sample and add azd new feature in devcontainer * instead parameters.json file with .bicepparam * processing format * keep consistent casing for params * move appsettings * remove some invalid changes * fix format issues * Remove depandsOn * remove resources file * remov keys from output * remove existing reference in module * update ReadMe * add rgName in listkeys * add use keyvault option add keyvault option to get secret keys remove invalid changes add param useKeyVault * set default value in .bicepparam * fix some bugs * update rbac * update rbac * fix some format and update infra core * Update openai to v1 * use resourcegroup.name() instead pass in rhName * Revert "Update openai to v1" * add token provider * Update requirements.txt * revert * fix chat * Update TextProcessingTool.py * update KeyVault options * abstract auth type with define method * remove invalid infra/core * update readme and storage.bicep in infra/core * Update output format * default to use rbac * add some comments * add readme and speech service related code in main.bicep * fix azd deploy problem * move code folder structure * fix ci error and some format issue * fix some format issue * fix some format issues * little changes * fix backend issue * Fixed mismatched requirements * Fix build-frontend * fix function error * Run black against the code base * try to fix ci error * fix ci errors * fix azd deploy web error * fix web debug error and update main.bicep * resolve conflict * fix tests path * try to fix CI/build error * Merge main * Fixed Requirements * Black fixes --------- Co-authored-by: zedy <zedy@wicresoft.com> Co-authored-by: ChenxiJiang333 <v-chenjiang@microsoft.com> Co-authored-by: Wenjie Yu(MSFT) <81678720+zedy-wj@users.noreply.github.com> Co-authored-by: ChenxiJiang333 <119990644+ChenxiJiang333@users.noreply.github.com> Co-authored-by: ross-p-smith <rosmith@microsoft.com> Co-authored-by: Ross Smith <ross-p-smith@users.noreply.github.com>
- Loading branch information
1 parent
9a1b43b
commit 2623e1b
Showing
149 changed files
with
3,654 additions
and
324 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json | ||
|
||
name: chat-with-your-data-solution-accelerator | ||
metadata: | ||
template: chat-with-your-data-solution-accelerator@0.0.1-beta | ||
|
||
services: | ||
web: | ||
project: ./code | ||
language: py | ||
host: appservice | ||
hooks: | ||
prepackage: | ||
windows: | ||
shell: pwsh | ||
run: cd ./frontend;npm install;npm run build; | ||
interactive: true | ||
continueOnError: false | ||
posix: | ||
shell: sh | ||
run: cd ./frontend;npm install;npm run build; | ||
interactive: true | ||
continueOnError: false | ||
|
||
adminweb: | ||
project: ./code/backend | ||
language: py | ||
host: appservice | ||
|
||
function: | ||
project: ./code/backend/batch | ||
language: py | ||
host: function |
Oops, something went wrong.