chore: update default port from 8000 to 9004 and add mobile-more-btn to file-list

This commit is contained in:
2026-01-06 10:08:59 +00:00
parent b8d88f5807
commit 1848660317
5 changed files with 406 additions and 104 deletions
+1 -1
View File
@@ -315,7 +315,7 @@ def main():
parser.add_argument(
"--host", type=str, default="0.0.0.0", help="Host address to bind to"
)
parser.add_argument("--port", type=int, default=8000, help="Port to listen on")
parser.add_argument("--port", type=int, default=9004, help="Port to listen on")
args = parser.parse_args()
uvicorn.run(app, host=args.host, port=args.port)