Skip to content

Commit

Permalink
Add more LocalCI config options
Browse files Browse the repository at this point in the history
  • Loading branch information
bensofficial committed Jan 19, 2024
1 parent ca61ed8 commit 612e08e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion roles/artemis/templates/application-prod.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,20 @@ artemis:

{% if continuous_integration.localci is defined %}
continuous-integration:
specify-thread-pool-size: {{ continuous_integration.localci.thread_pool_size is defined }}
{% if continuous_integration.localci.thread_pool_size is defined %}
thread-pool-size: {{ continuous_integration.localci.thread_pool_size }}
{% endif %}
artemis-authentication-token-value: "demo"
{% if continuous_integration.localci.proxy is defined %}
proxies:
use-system-proxy: true
default:
http-proxy: {{ continuous_integration.localci.proxy.http_proxy }}
https-proxy: {{ continuous_integration.localci.proxy.https_proxy }}
no-proxy: {{ continuous_integration.localci.proxy.no_proxy }}
{% endif %}
{% endif %}


{% if lti is defined %}
lti:
Expand Down

0 comments on commit 612e08e

Please sign in to comment.