mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
30 lines
580 B
JSON
30 lines
580 B
JSON
{
|
|
"$id": "https://fluence.dev/schemas/env.yaml",
|
|
"title": "env.yaml",
|
|
"type": "object",
|
|
"description": "Defines user project preferences",
|
|
"properties": {
|
|
"fluenceEnv": {
|
|
"title": "Fluence environment",
|
|
"description": "Fluence environment to connect to",
|
|
"type": "string",
|
|
"enum": [
|
|
"dar",
|
|
"stage",
|
|
"kras",
|
|
"local",
|
|
"custom"
|
|
],
|
|
"nullable": true
|
|
},
|
|
"version": {
|
|
"type": "number",
|
|
"const": 0
|
|
}
|
|
},
|
|
"required": [
|
|
"version"
|
|
],
|
|
"additionalProperties": false
|
|
}
|