Skip to content

Commit

Permalink
Added initial config directory
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeGat committed Apr 2, 2024
1 parent 9a29987 commit d6639ae
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config/versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "./versions.schema.json",
"spack-packages": "2024.03.22",
"spack-config": "2024.03.22"
}
19 changes: 19 additions & 0 deletions config/versions.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Deployment Environments",
"description": "A list of deployment targets that are supported",
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"spack-packages": {
"type": "string"
},
"spack-config": {
"type": "string"
}
},
"required": [ "$schema", "spack-packages", "spack-config" ],
"additionalProperties": false
}

0 comments on commit d6639ae

Please sign in to comment.