File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ cd ~/gitdiagram
9
9
# Pull latest changes
10
10
git pull origin main
11
11
12
- # Build and restart containers
12
+ # Build and restart containers with production environment
13
13
docker-compose down
14
14
ENVIRONMENT=production docker-compose up --build -d
15
15
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ echo " Current ENVIRONMENT: $ENVIRONMENT "
4
+
3
5
if [ " $ENVIRONMENT " = " development" ]; then
6
+ echo " Starting in development mode with hot reload..."
4
7
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..."
6
10
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
7
14
fi
You can’t perform that action at this time.
0 commit comments