all repos — myprecious @ 7804286fa26985d959e2a42aa3b382b19ac8cfdb

A lightweight web service to backup precious game saves.

.vscode/launch.json (view raw)

 1{
 2    // Use IntelliSense to learn about possible attributes.
 3    // Hover to view descriptions of existing attributes.
 4    // For more information, visit: <https://go.microsoft.com/fwlink/?linkid=830387>
 5    "version": "0.2.0",
 6    "configurations": [
 7      {
 8        "name": "myprecious",
 9        "type": "python",
10        "request": "launch",
11        "cwd": "${workspaceFolder}",
12        "module": "poetry",
13        "python": "C:\\Users\\07501300\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\myprecious-MjU9b_nO-py3.11",
14        "args": [
15          "run",
16          "python",
17          "-m",//"waitress-serve", "", "0.0.0.0", "--port", "5000", "main:app"
18          "waitress-serve",
19          "--host",
20          "0.0.0.0",
21          "--port",
22          "5000",
23          "main:app"
24        ],
25        "justMyCode": true,
26        "stopOnEntry": false,
27        "console": "integratedTerminal",
28        "env": {
29          "DEBUG_SWITCH": "True"
30        }
31      }
32    ]
33  }