mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 00:23:17 +00:00
fix: post create devcontainers
This commit is contained in:
@@ -2,9 +2,8 @@
|
|||||||
|
|
||||||
set -e # Exit immediately if a command exits with a non-zero status
|
set -e # Exit immediately if a command exits with a non-zero status
|
||||||
|
|
||||||
# Create ../frontend/.env.development if it doesn't exist, based on a template in the root
|
if [ ! -f frontend/.env.development ]; then
|
||||||
if [ ! -f ../frontend/.env.development ]; then
|
cp -n .env-template frontend/.env.development || true # Assuming .env-template is in the root
|
||||||
cp -n .env-template ../frontend/.env.development || true # Assuming .env-template is in the root
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Determine VITE_API_HOST based on environment
|
# Determine VITE_API_HOST based on environment
|
||||||
@@ -12,13 +11,13 @@ if [ -n "$CODESPACES" ]; then
|
|||||||
# Running in Codespaces
|
# Running in Codespaces
|
||||||
CODESPACE_NAME=$(echo "$CODESPACES" | cut -d'-' -f1) # Extract codespace name
|
CODESPACE_NAME=$(echo "$CODESPACES" | cut -d'-' -f1) # Extract codespace name
|
||||||
PUBLIC_API_HOST="https://${CODESPACE_NAME}-7091.${GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}"
|
PUBLIC_API_HOST="https://${CODESPACE_NAME}-7091.${GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}"
|
||||||
echo "Setting VITE_API_HOST for Codespaces: $PUBLIC_API_HOST in ../frontend/.env.development"
|
echo "Setting VITE_API_HOST for Codespaces: $PUBLIC_API_HOST in frontend/.env.development"
|
||||||
sed -i "s|VITE_API_HOST=.*|VITE_API_HOST=$PUBLIC_API_HOST|" ../frontend/.env.development
|
sed -i "s|VITE_API_HOST=.*|VITE_API_HOST=$PUBLIC_API_HOST|" frontend/.env.development
|
||||||
else
|
else
|
||||||
# Not running in Codespaces (local devcontainer)
|
# Not running in Codespaces (local devcontainer)
|
||||||
DEFAULT_API_HOST="http://localhost:7091"
|
DEFAULT_API_HOST="http://localhost:7091"
|
||||||
echo "Setting VITE_API_HOST for local dev: $DEFAULT_API_HOST in ../frontend/.env.development"
|
echo "Setting VITE_API_HOST for local dev: $DEFAULT_API_HOST in frontend/.env.development"
|
||||||
sed -i "s|VITE_API_HOST=.*|VITE_API_HOST=$DEFAULT_API_HOST|" ../frontend/.env.development
|
sed -i "s|VITE_API_HOST=.*|VITE_API_HOST=$DEFAULT_API_HOST|" frontend/.env.development
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user