🔧 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
10 lines
242 B
YAML
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
|