xbat Logo XBAT
AboutDemo
CTRL+K
Megware logo

Demo Mode

Enabling demo mode for xbat

Demo mode allows you to give unrestricted read-only access to xbat. In this mode, only the admin account is able to perform write operations.

Analogous to the initial database setup, attach to the xbat-mongodb container to access the database:

podman exec -it xbat-mongodb /bin/bash
mongo --authenticationDatabase=admin --username admin
use xbat

Afterwards insert the demo user:

db.users.insert({
    user_name: "demo",
    user_type: "demo",
    password: "*C142FB215B6E05B7C134B1A653AD4B455157FD79"
});

Now insert the clients for frontend and swagger:

db.clients.insert({
    name: "demo",
    client_id: "wf_demo",
    redirect_uris: "",
    default_scopes:
        "benchmarks_r benchmarks configurations_r configurations projects_r projects_r settings_r settings users_r user_self_r"
});

db.clients.insert({
    name: "demo",
    client_id: "demo",
    redirect_uris:
        "https://localhost:7000/api/v1/ui/oauth2-redirect.html https://127.0.0.1:7000/api/v1/ui/oauth2-redirect.html",
    default_scopes:
        "benchmarks_r benchmarks configurations_r configurations projects_r projects_r settings_r settings users_r user_self_r"
});

Modify the [demo] section of the /etc/xbat/xbat.conf file to enable demo mode. The user and password fields will be displayed on the login page of xbat and should match the credentials of the demo user.


[demo]
enabled = true
user = demo
password = demo
Edit this Page on GitHub