mirror of
https://github.com/harivansh-afk/ds1001_final.git
synced 2026-04-18 03:00:39 +00:00
added final project notebook and virtual environment files
This commit is contained in:
parent
a2daa16a47
commit
8dd392b20d
586 changed files with 112839 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"title": "Notebook Shell",
|
||||
"description": "Notebook Shell layout settings.",
|
||||
"properties": {
|
||||
"layout": {
|
||||
"$ref": "#/definitions/layout",
|
||||
"type": "object",
|
||||
"title": "Customize shell widget positioning",
|
||||
"description": "Overrides default widget position in the application layout",
|
||||
"default": {
|
||||
"Debugger Console": { "area": "down" },
|
||||
"Markdown Preview": { "area": "right" },
|
||||
"Plugins": { "area": "left" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"definitions": {
|
||||
"layout": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"[\\w-]+": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"area": {
|
||||
"enum": ["left", "right"]
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue