3 Commits
0.1.0 ... 0.1.1

3 changed files with 9 additions and 11 deletions

12
.vscode/launch.json vendored
View File

@@ -3,17 +3,9 @@
"configurations": [ "configurations": [
{ {
"name": "Launch Flask", "name": "Launch Flask",
"type": "debugpy", "type": "node-terminal",
"request": "launch", "request": "launch",
"module": "flask", "command": "flask --app src/judas_server/web/web_server.py run --host=0.0.0.0"
"env": {
"FLASK_APP": "judas_server/web/web_server.py"
},
"args": [
"run",
"--host",
"0.0.0.0"
]
} }
] ]
} }

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.1.1] - 2025-08-09
### Miscellaneous Tasks
- [`8b6bf1e`](https://github.com/pufereq/template-repo/commit/8b6bf1e91366d76ee3203b508b895e4b75d7f845) **.vscode/launch.json**: use shell instead of debugpy for running flask
## [0.1.0] - 2025-08-09 ## [0.1.0] - 2025-08-09
### Bug Fixes ### Bug Fixes

View File

@@ -4,7 +4,7 @@ build-backend = "uv_build"
[project] [project]
name = "judas_server" name = "judas_server"
version = "0.1.0" version = "0.1.1"
description = "The backbone of the remote PC fleet management system." description = "The backbone of the remote PC fleet management system."
readme = "README.md" readme = "README.md"
authors = [] authors = []