Skip to content

Commit

Permalink
add extra
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte authored Nov 6, 2024
1 parent 1711173 commit 171ebee
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions onyxia-api/src/main/resources/schemas/ide/extraenv.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "environment variables available within your service",
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"default": "CHANGE_ME",
"pattern": "^[^ ]+$"
},
"value": {
"type": "string",
"default": ""
}
}
}
}

0 comments on commit 171ebee

Please sign in to comment.