From 37b1dd5493328a07565dd362d7d81242b02fc304 Mon Sep 17 00:00:00 2001 From: Kori Kuzma Date: Tue, 2 Apr 2024 12:26:10 -0400 Subject: [PATCH] cicd: fix elastic beanstalk deployment (#326) * Procfile command updated for new src layout --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 5a5afe7b..fdfd16a4 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn -k uvicorn.workers.UvicornWorker metakb.main:app --timeout 1000 --log-level debug \ No newline at end of file +web: cd src && gunicorn -k uvicorn.workers.UvicornWorker metakb.main:app --timeout 1000 --log-level debug