langflow/render.yaml
Gabriel Luiz Freitas Almeida 53e8be2720 📝 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
2023-07-08 16:08:17 -03:00

10 lines
242 B
YAML

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