From dbcdb6168042881b6759197dcb529daf117b0f4d Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Thu, 16 Mar 2023 15:04:15 +1100 Subject: [PATCH] Added quote changes and a launch.json --- .vscode/launch.json | 24 +++++++++++++++++++++++ priceybot2/templates/base.html | 33 ++++++++++++++++++++++---------- priceybot2/templates/quotes.html | 22 ++++++++++++++++++--- 3 files changed, 66 insertions(+), 13 deletions(-) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5fdf91c --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // 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: Flask", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "priceybot2", + "FLASK_DEBUG": "1" + }, + "args": [ + "run", + "--host=0.0.0.0" + ], + "jinja": true, + "justMyCode": true + } + ] +} \ No newline at end of file diff --git a/priceybot2/templates/base.html b/priceybot2/templates/base.html index 2a226a1..af03946 100644 --- a/priceybot2/templates/base.html +++ b/priceybot2/templates/base.html @@ -5,6 +5,7 @@ Pricey Bot + @@ -15,7 +16,27 @@