Skip to content

Commit

Permalink
add JSON sample file
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Jan 9, 2024
1 parent ae0ddf8 commit e7b66a8
Showing 1 changed file with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"configurations": {
"my.pid": {
"stringProperty": "value1",
"stringArrayProperty": ["v1","v2","v3"],
"booleanProperty": true,
"longProperty": 999999999999
},
"my.factory-my.pid": {
"stringProperty": "value2"
}
},

"configurations:mode1": {
"my.factory-my.pid2": {
"stringProperty": "value3"
}
},

"configurations:mode2": {
"my.pid2": {
"stringProperty": "value4"
}
},

"configurations:publish,prod": {
"my.pid2": {
"stringProperty": "value5"
}
},

"repoinit": [
"create path /repoinit/test1",
"create path /repoinit/test2"
],

"repoinit:mode1": [
"create service user mode1"
],

"repoinit:mode1,mode2": [
"create service user mode1_mode2"
]
}

0 comments on commit e7b66a8

Please sign in to comment.