From 3adec32ef10498d8c1f025ab159d438500418875 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Thu, 16 Nov 2023 19:03:05 -0500 Subject: [PATCH] add build script for render backend deployment --- backend/build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 backend/build.sh diff --git a/backend/build.sh b/backend/build.sh new file mode 100644 index 0000000..baab923 --- /dev/null +++ b/backend/build.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +# exit on error +set -o errexit + +echo "Installing the latest version of poetry..." +pip install --upgrade pip +pip install poetry==1.4.1 + +rm poetry.lock +poetry lock +python -m poetry install