Skip to content

Commit d04e3ec

Browse files
Add gunicorn.conf.py to zip file
1 parent ca0d73b commit d04e3ec

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

samples/web-app-cosmosdb-mongodb-api/python/bicep/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ fi
134134

135135
# Create the zip package of the web app
136136
echo "Creating zip package of the web app..."
137-
zip -r "$ZIPFILE" app.py mongodb.py static templates requirements.txt
137+
zip -r "$ZIPFILE" app.py mongodb.py gunicorn.conf.py static templates requirements.txt
138138

139139
# Deploy the web app
140140
# Deploy the web app

samples/web-app-cosmosdb-mongodb-api/python/scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ fi
919919

920920
# Create the zip package of the web app
921921
echo "Creating zip package of the web app..."
922-
zip -r "$ZIPFILE" app.py mongodb.py static templates requirements.txt
922+
zip -r "$ZIPFILE" app.py mongodb.py gunicorn.conf.py static templates requirements.txt
923923

924924
# List the contents of the zip package
925925
echo "Contents of the zip package [$ZIPFILE]:"

samples/web-app-cosmosdb-mongodb-api/python/terraform/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fi
6161

6262
# Create the zip package of the web app
6363
echo "Creating zip package of the web app..."
64-
zip -r "$ZIPFILE" app.py mongodb.py static templates requirements.txt
64+
zip -r "$ZIPFILE" app.py mongodb.py gunicorn.conf.py static templates requirements.txt
6565

6666
# Deploy the web app
6767
# Deploy the web app

samples/web-app-cosmosdb-nosql-api/python/scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fi
108108

109109
# Create the zip package of the web app
110110
echo "Creating zip package of the web app..."
111-
zip -r "$ZIPFILE" app.py cosmosdb_client.py static templates requirements.txt
111+
zip -r "$ZIPFILE" app.py cosmosdb_client.py gunicorn.conf.py static templates requirements.txt
112112

113113
# Deploy the web app
114114
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

samples/web-app-managed-identity/python/bicep/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fi
129129

130130
# Create the zip package of the web app
131131
echo "Creating zip package of the web app..."
132-
zip -r "$ZIPFILE" app.py requirements.txt static templates
132+
zip -r "$ZIPFILE" app.py gunicorn.conf.py requirements.txt static templates
133133

134134
# Deploy the web app
135135
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

samples/web-app-managed-identity/python/scripts/system-assigned.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ fi
248248

249249
# Create the zip package of the web app
250250
echo "Creating zip package of the web app..."
251-
zip -r "$ZIPFILE" app.py requirements.txt static templates
251+
zip -r "$ZIPFILE" app.py gunicorn.conf.py requirements.txt static templates
252252

253253
# Deploy the web app
254254
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

samples/web-app-managed-identity/python/scripts/user-assigned.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ fi
332332

333333
# Create the zip package of the web app
334334
echo "Creating zip package of the web app..."
335-
zip -r "$ZIPFILE" app.py requirements.txt static templates
335+
zip -r "$ZIPFILE" app.py gunicorn.conf.py requirements.txt static templates
336336

337337
# Deploy the web app
338338
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

samples/web-app-managed-identity/python/terraform/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fi
5252

5353
# Create the zip package of the web app
5454
echo "Creating zip package of the web app..."
55-
zip -r "$ZIPFILE" app.py activities.py database.py static templates requirements.txt
55+
zip -r "$ZIPFILE" app.py gunicorn.conf.py activities.py database.py static templates requirements.txt
5656

5757
# Deploy the web app
5858
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

samples/web-app-sql-database/python/bicep/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ fi
295295

296296
# Create the zip package of the web app
297297
echo "Creating zip package of the web app..."
298-
zip -r "$ZIPFILE" app.py activities.py certificates.py database.py static templates requirements.txt
298+
zip -r "$ZIPFILE" app.py gunicorn.conf.py activities.py certificates.py database.py static templates requirements.txt
299299

300300
# Deploy the web app
301301
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

samples/web-app-sql-database/python/scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ fi
450450

451451
# Create the zip package of the web app
452452
echo "Creating zip package of the web app..."
453-
zip -r "$ZIPFILE" app.py activities.py database.py certificates.py static templates requirements.txt
453+
zip -r "$ZIPFILE" app.py gunicorn.conf.py activities.py database.py certificates.py static templates requirements.txt
454454

455455
# Deploy the web app
456456
echo "Deploying web app [$WEB_APP_NAME] with zip file [$ZIPFILE]..."

0 commit comments

Comments
 (0)