Skip to content

Commit

Permalink
Merge pull request #23 from loredous/pre-rmisc
Browse files Browse the repository at this point in the history
Pre-rmisc changees and bugfixes
  • Loading branch information
loredous authored Jun 11, 2024
2 parents 7b27b25 + 7f21a19 commit 52b37ad
Show file tree
Hide file tree
Showing 25 changed files with 3,219 additions and 350 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,5 @@ testem.log
.DS_Store
Thumbs.db

src/python/state.pkl
src/python/statemachines.pkl
19 changes: 11 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,38 @@

{
"name": "Python: Knocker Service",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/knocker/main.py",
"program": "${workspaceFolder}/src/python/knocker/main.py",
"args": [
"-v",
"-c", "127.0.0.1",
"-p", "8000",
"-I", "00000000-0000-0000-0000-000000000001"
],
"cwd": "${workspaceFolder}/src",
"cwd": "${workspaceFolder}/src/python/",
"console": "integratedTerminal",
"justMyCode": true
"justMyCode": true,
"env": {
"PYTHONPATH": "${workspaceFolder}/src/python/"
}
},
{
"name": "Python: FastAPI",
"type": "python",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"controller.controller:api",
"--reload"
],
"env": {
"seed_for_testing": "1",
"debug": "1"
"debug": "1",
"state_type": "file"
},
"jinja": true,
"justMyCode": true,
"cwd": "${workspaceFolder}/src"
"cwd": "${workspaceFolder}/src/python/"
}
]
}
Loading

0 comments on commit 52b37ad

Please sign in to comment.