f78b0b02b8
this PR allows backstage contributors to run the example app against actual postgres, opensearch and redis services using docker and docker compose file. no changeset as this doesn't affect any published packages. Signed-off-by: Hellgren Heikki <heikki.hellgren@op.fi>
24 lines
500 B
YAML
24 lines
500 B
YAML
# To run local backstage instance with docker services,
|
|
# run:
|
|
# 1. `docker compose -f docker-compose.deps.yml up --wait`
|
|
# 2. `BACKSTAGE_ENV=docker yarn dev`
|
|
backend:
|
|
database:
|
|
client: pg
|
|
connection:
|
|
host: localhost
|
|
port: 5432
|
|
user: postgres
|
|
password: postgres
|
|
cache:
|
|
store: redis
|
|
connection: redis://localhost:6379
|
|
|
|
search:
|
|
elasticsearch:
|
|
provider: opensearch
|
|
node: 'http://localhost:9200'
|
|
auth:
|
|
username: admin
|
|
password: admin
|