-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json | ||
|
||
name: azure-gpt-rag | ||
metadata: | ||
template: azure-gpt-rag-orchestrator | ||
services: | ||
orchestrator: | ||
project: . | ||
language: python | ||
host: function | ||
# infrastructure is pulled from the main azure-gpt-rag repo with a hook. | ||
# If you previously provisioned infrastructure, use the same azd-env name, subscription and location to deploy data ingest to that infrastructure. | ||
hooks: | ||
preprovision: | ||
posix: | ||
run: scripts/preprovision.sh | ||
interactive: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The infrastructure for this project is defined in: https://github.com/Azure/GPT-RAG | ||
|
||
After deploying the infrastructure, you can use `azd env refresh` and `azd deploy` to deploy the data ingestion. |
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,13 @@ | ||
#!/bin/sh | ||
|
||
BLUE='\033[0;34m' | ||
NC='\033[0m' # No Color | ||
|
||
echo "" | ||
echo "------------- NOTE -------------" | ||
echo "azd provision and azd up are ${YELLOW}not allowed${NC} for this project." | ||
echo "Infrastructure is defined in https://github.com/Azure/GPT-RAG." | ||
echo "After deploying infrastructure, run ${BLUE}azd env refresh${NC} with the same environment name, subscription and location." | ||
echo "Then run ${BLUE}azd deploy${NC}" | ||
|
||
exit 1 |