initial upload

This commit is contained in:
2023-06-22 10:34:18 +02:00
parent 6df897b44d
commit 5c621cf669
1030 changed files with 355394 additions and 49 deletions

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

@@ -0,0 +1,22 @@
{
// 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 : application Pyramid",
"type": "python",
"request": "launch",
"python": "C:/pyramid/Scripts/python.exe",
"program": "/pyramid/Scripts/pserve.exe",
"args": [
"-v",
"development.ini",
"--reload"
],
"pyramid": true,
"chameleon": true
}
]
}