* chore: Update dockerfile paths and branch name in render.yaml and release.yml * chore(readthedocs.yaml): remove .readthedocs.yaml file as it is no longer needed chore(base.Dockerfile): remove base.Dockerfile as it is no longer used in the project feat(cdk-docker-compose.yml): add cdk-docker-compose.yml file to set up docker-compose for backend and frontend services * move dockerignore * chore: Remove test-results/.last-run.json file * chore: Cache Node.js dependencies during workflow execution * chore: Remove npm cache from workflow and cache Node.js dependencies * chore: Update shardIndex and shardTotal values in typescript_test.yml workflow * chore: Update Playwright test command with shard and worker options
16 lines
444 B
YAML
16 lines
444 B
YAML
services:
|
|
# A Docker web service
|
|
- type: web
|
|
name: langflow
|
|
runtime: docker
|
|
dockerfilePath: ./docker/render.Dockerfile
|
|
repo: https://github.com/langflow-ai/langflow
|
|
branch: dev
|
|
healthCheckPath: /health
|
|
autoDeploy: false
|
|
envVars:
|
|
- key: LANGFLOW_DATABASE_URL
|
|
value: sqlite:////home/user/.cache/langflow/langflow.db
|
|
disk:
|
|
name: langflow-data
|
|
mountPath: /home/user/.cache/langflow
|