-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New features5 (#21) * Updating documentation * You can negate content of single bracket * Fixing view node attributes * Moving package build to poetry * Reformatting with black * Adding missing devcontainer * Adding black target * Removing manually generated documentation * Updating package build instructions + locale+timezone moved from Dockerfile to devcontainer.json * Including .vscode configuration * Exit on first error executing in GNU Makefile * Minor changes * Adding task descriptions * devcontainer configuration cleanup * Referencing images with URLs * Setting image URLs to frozen revision * Allow README.md to be used by pypi and sphinx including all image rendering
- Loading branch information
Showing
18 changed files
with
163 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,30 @@ | ||
{ | ||
"name": "Python Environment", | ||
// "image": "sphinx-ubuntu-24.04:0.2", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"context": ".." | ||
}, | ||
"workspaceFolder": "/workspace", | ||
"runArgs": ["-v", "${localWorkspaceFolder}:/workspace"], | ||
"postCreateCommand": "./uid_entrypoint" | ||
"name": "sphinx-needs-data-explorer-dc", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"context": ".." | ||
}, | ||
"runArgs": [ | ||
"-v","${localWorkspaceFolder}:/workspace" | ||
], | ||
"workspaceFolder": "/workspace", | ||
"postCreateCommand": "./uid_entrypoint", | ||
"mounts": [ | ||
"type=bind,readonly,source=/etc/localtime,target=/etc/localtime" | ||
], | ||
"containerEnv": { | ||
"GITHUB_TOKEN": "${localEnv:GITHUB_TOKEN}", | ||
"GITHUB_USER": "${localEnv:GITHUB_USER}", | ||
"LC_ALL": "en_US.UTF-8", | ||
"LANG": "en_US.UTF-8", | ||
"LANGUAGE": "en_US.UTF-8" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.debugpy" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
.DS_Store | ||
.venv | ||
myvenv | ||
build | ||
doc/build | ||
dist | ||
.vscode | ||
|
||
/*.json | ||
/*.zip | ||
/*.bak | ||
docs | ||
sphinx_needs_data_explorer/_static/sphinx_needs_data_explorer_bak*.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"version": "0.3.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Sphinx Module", | ||
"type": "debugpy", | ||
"purpose": [ | ||
"debug-in-terminal" | ||
], | ||
"request": "launch", | ||
"module": "sphinx", | ||
"console": "integratedTerminal", | ||
"justMyCode": false, | ||
"stopOnEntry": true, | ||
"args": [ | ||
"-b", | ||
"html", | ||
"source", | ||
"build", | ||
"-Ea" | ||
], | ||
"cwd": "${workspaceFolder}/doc", | ||
"env": { | ||
"TEST": "true", | ||
} | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"esbonio.sphinx.buildDir": "${workspaceFolder}/_build/html", | ||
"esbonio.sphinx.confDir": "${workspaceFolder}/doc/source", | ||
"esbonio.server.showDeprecationWarnings": "false", | ||
"esbonio.server.enabled": true, | ||
"sphinx.quiet": true, | ||
"sphinx.silent": true, | ||
"sphinx.verbosity": 0, | ||
"restructuredtext.syntaxHighlighting.disabled": true, | ||
"plantuml.exportOutDir": "${workspaceFolder}/out", | ||
"plantuml.exportSubFolder": false, | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.