{% extends "cacsremoteservice/views/layouts/master.html" %} {% block site-nav %} {% include "cacsremoteservice/views/partials/site-nav.html" with active="configuration" %} {% endblock %} {% block secondary-nav %} {% if is-admin %} {% include "cacsremoteservice/views/configuration/config-header.html" with configuration-tabs=configuration-tabs %} {% endif %} {% endblock %} {% block main %}

System Configuration

Administer system settings such as Git and RepoTool executables, parallel analysis execution, and legal settings.

{% if validation-errors|not-empty %}

Validation Errors

    {% for error in validation-errors %}
  • {{error}}
  • {% endfor %}
{% endif %} {% if is-admin %}

Host/Network Settings

A full URL to your CodeScene instance used for instance by Notifications or project PR integration webhook events.
{% endif %} {% if is-admin %}

Git Client

The git executable to use. You need at least version 2.x.

{% if gitversion %} {{gitversion}} {% else %} Failed to read git version. Is the executable path correct? {% endif %}

{% endif %} {% if is-admin %}

Concurrent Analysis Runs

If you have many analysis projects, you can speed up the execution by analysing them in parallel. Note that this setting requires a re-start of CodeScene to take effect! Also note that you have to ensure the hardware has enough CPUs and RAM memory.
{% endif %} {% if is-admin %}

Diagnostics

Controls the diagnostics level in the application. Enable debug traces in case you want CodeScene Support to investigate a potential problem. Please remember to disable the trace again once you're done with the diagnostics!

The diagnostic level is automatically reset to normal when CodeScene is restarted. See the documentation for more details.

{% if files-in-analysis|not-empty %}

Files currently being scored:

    {% for it in files-in-analysis %}
  • {{ it }}
  • {% endfor %}

{% endif %}
{% endif %} {% if is-admin %}

Sensitive Information

Hide aggregated author information in all analysis projects if that information is sensitive due to juridical or company internal policies.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}