📝 docs(render.yaml): add render.yaml configuration file for langflow service

🔧 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
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-08 16:08:17 -03:00
commit 53e8be2720

10
render.yaml Normal file
View file

@ -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