Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(local stack): add QUEUE_PUBLIC_KEY and compiler flags #724

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,16 @@ VELA_API=http://localhost:8080
# VELA_SCM_CLIENT=

# github client secret from oauth application
# VELA_SCM_SECRET=
# 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
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

version: '3'

services:
Expand Down Expand Up @@ -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
Expand Down