From 5fdc7496e4cb4989ca53844e3131e6e541bf1120 Mon Sep 17 00:00:00 2001 From: Kelly Merrick Date: Mon, 2 Oct 2023 14:39:01 -0500 Subject: [PATCH] fix(local stack): add QUEUE_PUBLIC_KEY and compiler flags (#724) --- .env.example | 14 +++++++++++++- docker-compose.yml | 3 +++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 1f5776a9c..bec7cae60 100644 --- a/.env.example +++ b/.env.example @@ -63,4 +63,16 @@ VELA_API=http://localhost:8080 # VELA_SCM_CLIENT= # github client secret from oauth application -# VELA_SCM_SECRET= \ No newline at end of file +# VELA_SCM_SECRET= + +# COMPILER FLAGS +# +# compiler github is whether or not the compiler uses github to pull templates +# +# default: false +# VELA_COMPILER_GITHUB= + +# compiler github url is the url used by the compiler to fetch templates +# +# default: https://github.com +# VELA_COMPILER_GITHUB_URL \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index be03d74a6..2498e4d92 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 + version: '3' services: @@ -53,6 +55,7 @@ services: VELA_LOG_LEVEL: trace # comment the line below to use registration flow VELA_SECRET: 'zB7mrKDTZqNeNTD8z47yG4DHywspAh' + QUEUE_PUBLIC_KEY: 'DXsJkoTSkHlG26d75LyHJG+KQsXPr8VKPpmH/78zmko=' VELA_SERVER_PRIVATE_KEY: 'F534FF2A080E45F38E05DC70752E6787' VELA_USER_REFRESH_TOKEN_DURATION: 90m VELA_USER_ACCESS_TOKEN_DURATION: 60m