mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
12 lines
422 B
Bash
Executable File
12 lines
422 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source .env
|
|
|
|
if [[ -n "$AZURE_OPENAI_API_BASE" ]] && [[ -n "$AZURE_OPENAI_API_VERSION" ]] && [[ -n "$AZURE_DEPLOYMENT_NAME" ]] && [[ -n "$AZURE_EMBEDDINGS_DEPLOYMENT_NAME" ]]; then
|
|
echo "Running Azure Configuration"
|
|
docker-compose -f docker-compose-azure.yaml build && docker-compose -f docker-compose-azure.yaml up
|
|
else
|
|
echo "Running Plain Configuration"
|
|
docker-compose build && docker-compose up
|
|
fi
|