Skip to content

Commit 8c98870

Browse files
more strict checks on environment variable for reloading
1 parent 87c78b5 commit 8c98870

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

backend/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd ~/gitdiagram
99
# Pull latest changes
1010
git pull origin main
1111

12-
# Build and restart containers
12+
# Build and restart containers with production environment
1313
docker-compose down
1414
ENVIRONMENT=production docker-compose up --build -d
1515

backend/entrypoint.sh

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
#!/bin/bash
22

3+
echo "Current ENVIRONMENT: $ENVIRONMENT"
4+
35
if [ "$ENVIRONMENT" = "development" ]; then
6+
echo "Starting in development mode with hot reload..."
47
exec uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
5-
else
8+
elif [ "$ENVIRONMENT" = "production" ]; then
9+
echo "Starting in production mode with multiple workers..."
610
exec uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 2
11+
else
12+
echo "ENVIRONMENT must be set to either 'development' or 'production'"
13+
exit 1
714
fi

0 commit comments

Comments
 (0)