mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 01:55:55 -05:00
Introduces a repeatable, declarative way to seed a local dev environment via the existing SeederUtility.
30 lines
594 B
JSON
30 lines
594 B
JSON
[
|
|
{
|
|
"label": "Jane Doe Free (individual, free)",
|
|
"command": "individual",
|
|
"args": {
|
|
"subscription": "free",
|
|
"firstName": "Jane",
|
|
"lastName": "Doe",
|
|
"email": "jane@bw.test"
|
|
}
|
|
},
|
|
{
|
|
"label": "John Doe (individual, premium)",
|
|
"command": "individual",
|
|
"args": {
|
|
"subscription": "premium",
|
|
"firstName": "John",
|
|
"lastName": "Doe",
|
|
"email": "john@bw.test"
|
|
}
|
|
},
|
|
{
|
|
"label": "Enterprise Basic (qa.enterprise-basic preset)",
|
|
"command": "preset",
|
|
"args": {
|
|
"name": "qa.enterprise-basic"
|
|
}
|
|
}
|
|
]
|