31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
app:
|
|
# Should be the same as backend.baseUrl when using the `app-backend` plugin.
|
|
baseUrl: http://localhost:7007
|
|
|
|
backend:
|
|
# Required for authentication. This secret is shared by all backend plugins.
|
|
# See https://backstage.io/docs/auth/service-to-service-auth for
|
|
# information on the format
|
|
# auth:
|
|
# keys:
|
|
# - secret: ${BACKEND_AUTH_SECRET}
|
|
# Note that the baseUrl should be the URL that the browser and other clients
|
|
# should use when communicating with the backend, i.e. it needs to be
|
|
# reachable not just from within the backend host, but from all of your
|
|
# callers. When its value is "http://localhost:7007", it's strictly private
|
|
# and can't be reached by others.
|
|
baseUrl: http://localhost:7007
|
|
# The listener can also be expressed as a single <host>:<port> string. In this case we bind to
|
|
# all interfaces, the most permissive setting. The right value depends on your specific deployment.
|
|
listen:
|
|
port: 7007
|
|
|
|
# config options: https://node-postgres.com/api/client
|
|
database:
|
|
client: pg
|
|
connection:
|
|
host: ${POSTGRES_HOST}
|
|
password: ${POSTGRES_PASSWORD}
|
|
port: ${POSTGRES_PORT}
|
|
user: ${POSTGRES_USER}
|