summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-24 17:12:34 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-24 17:12:34 -0600
commita0ff547c4bd4361f60baf2d82d511a291b5996ff (patch)
tree99d99ee7c27a7f28d44f74735327027099a25fc9 /.vscode
parent4aa78f692bc4346a7a565cdedae9acd1cd1e75dc (diff)
Improve comments rendering
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json26
-rw-r--r--.vscode/simple-comments.code-workspace39
2 files changed, 65 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..90ecc77
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,26 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+
+ {
+ "name": "Python Debugger: Flask",
+ "type": "debugpy",
+ "request": "launch",
+ "module": "flask",
+ "env": {
+ "FLASK_APP": "main.py",
+ "FLASK_DEBUG": "1"
+ },
+ "args": [
+ "run",
+ "--debug",
+ "--no-debugger",
+ "--no-reload"
+ ],
+ "jinja": true
+ }
+ ]
+} \ No newline at end of file
diff --git a/.vscode/simple-comments.code-workspace b/.vscode/simple-comments.code-workspace
new file mode 100644
index 0000000..db16e41
--- /dev/null
+++ b/.vscode/simple-comments.code-workspace
@@ -0,0 +1,39 @@
+{
+ "folders": [
+ {
+ "path": ".."
+ },
+ {
+ "path": "../../../../Jekyll Pages/russian-lessons"
+ }
+ ],
+ "settings": {},
+ "launch": {
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "firefox",
+ "request": "launch",
+ "reAttach": true,
+ "name": "Launch localhost",
+ "url": "http://127.0.0.1:4000",
+ "webRoot": "${workspaceFolder:russian-lessons}/_site",
+ "pathMappings": [
+ { "url": "http://127.0.0.1:5000/static/js", "path": "${workspaceFolder:simple-comments}/static/js" }
+ ]
+ },
+ {
+ "name": "Attach",
+ "type": "firefox",
+ "request": "attach"
+ },
+ {
+ "name": "Launch WebExtension",
+ "type": "firefox",
+ "request": "launch",
+ "reAttach": true,
+ "addonPath": "${workspaceFolder:russian-lessons}/_site"
+ }
+ ]
+ }
+} \ No newline at end of file