Skip to content

Commit

Permalink
Merge pull request #29 from ddecrulle/fix/config
Browse files Browse the repository at this point in the history
add placeholder in configuration.json
  • Loading branch information
SimonDmz authored Nov 8, 2022
2 parents 02935c2 + 657116e commit d0e9b31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "massive-attack",
"version": "2.0.4",
"version": "2.0.5",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.4",
Expand Down
10 changes: 5 additions & 5 deletions public/configuration.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"MASSIVE_ATTACK_API_URL": "https://url.to.massive-attack.api",
"MASSIVE_ATTACK_API_URL": "${MASSIVE_ATTACK_API_URL}",
"_MASSIVE_ATTACK_API_URL_COMMENT_": "url of Massive-Attack API",

"AUTHENTICATION_MODE": "keycloak",
"AUTHENTICATION_MODE": "${AUTHENTICATION_MODE}",
"_AUTHENTICATION_MODE_COMMENT": "The mode of authentication. ['anonymous','keycloak' ]",

"PLATEFORM":"TRAINING",
"PLATEFORM":"${PLATEFORM}",
"_PLATEFORM_COMMENT":"The API may be connected to multiple environnements. [PRODUCTION, TRAINING]",

"ADMIN_ROLE":"admin",
"USER_ROLES":["manager", "Guest"]
"ADMIN_ROLE":"${ADMIN_ROLE}",
"USER_ROLES":"${USER_ROLES}"


}

0 comments on commit d0e9b31

Please sign in to comment.