mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-13 02:54:27 +00:00
dbd1b1b181
For easier local development and training purposes, this adds an editable dev container for the connector proxy demo as well as a local example connector that can be changed in the live environment without needing to poetry install a connector for another location.
17 lines
366 B
YAML
17 lines
366 B
YAML
|
|
services:
|
|
spiffworkflow-connector:
|
|
build:
|
|
context: connector-proxy-demo
|
|
dockerfile: dev.Dockerfile
|
|
user: "${RUN_AS}"
|
|
environment:
|
|
FLASK_DEBUG: "1"
|
|
POETRY_VIRTUALENVS_IN_PROJECT: "true"
|
|
XDG_CACHE_HOME: "/app/.cache"
|
|
env_file:
|
|
- path: .env
|
|
required: false
|
|
volumes:
|
|
- ./connector-proxy-demo:/app
|