We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a7885 commit a643667Copy full SHA for a643667
scripts/load_python_env.sh
@@ -1,6 +1,6 @@
1
#!/bin/sh
2
3
-echo 'Creating Python virtual environment "app/backend/.venv"...'
+echo 'Creating Python virtual environment ".venv"...'
4
python3 -m venv .venv
5
6
echo 'Installing dependencies from "requirements.txt" into virtual environment (in quiet mode)...'
scripts/prepdocs.ps1
@@ -1,5 +1,4 @@
-$USE_CLOUD_INGESTION = (azd env get-value USE_CLOUD_INGESTION)
-if ($USE_CLOUD_INGESTION -eq "true") {
+if ((azd env get-values) -match "USE_CLOUD_INGESTION=""true""") {
Write-Host "Cloud ingestion is enabled, so we are not running the manual ingestion process."
Exit 0
}
0 commit comments