From 53e8be272006ea186a42735fd0884d6db3ba6a64 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Sat, 8 Jul 2023 16:08:17 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(render.yaml):=20add=20rende?= =?UTF-8?q?r.yaml=20configuration=20file=20for=20langflow=20service?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔧 chore(render.yaml): configure langflow service in render.yaml for deployment - Add render.yaml configuration file for langflow service - Configure langflow service as a Docker web service - Set the name of the service to "langflow" - Specify the runtime as Docker - Set the path to the Dockerfile as "./Dockerfile" - Set the repository URL to "https://github.com/logspace-ai/langflow" - Set the branch to "form_io" - Set the health check path to "/health" - Disable auto deployment for the service --- render.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 render.yaml diff --git a/render.yaml b/render.yaml new file mode 100644 index 000000000..1f9451131 --- /dev/null +++ b/render.yaml @@ -0,0 +1,10 @@ +services: + # A Docker web service + - type: web + name: langflow + runtime: docker + dockerfilePath: ./Dockerfile + repo: https://github.com/logspace-ai/langflow + branch: form_io + healthCheckPath: /health + autoDeploy: false