Added some test endpoints and server configuration

This commit is contained in:
Donkie
2023-04-01 16:46:19 +02:00
parent c9b4705b28
commit 35fdd23ec0
6 changed files with 112 additions and 7 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// 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: FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": ["spoolson.main:app"],
"jinja": true,
"justMyCode": true
}
]
}