Merge app brach to frontend #1

Merged
IgorVolochay merged 42 commits from app into frontend 2026-08-13 06:14:20 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 90939d2634 - Show all commits
+2 -1
View File
@@ -1,6 +1,7 @@
name: app-actions
on:
workflow_dispatch:
push:
paths:
- '**.py'
@@ -10,7 +11,7 @@ on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
+1 -1
View File
@@ -183,7 +183,7 @@ async def comment(comment_info: AddCommentBody,
async def main():
config = uvicorn.Config("main:app", port=5000, log_level="debug")
config = uvicorn.Config("main:app", port=5000, log_level="debug",)
server = uvicorn.Server(config)
await server.serve()