This commit is contained in:
Muhammad Labeeb 2025-02-10 17:27:45 +05:00 committed by Régis Behmo
parent a1efc9d9f9
commit b32087c1a2
3 changed files with 5 additions and 7 deletions

View File

@ -161,9 +161,7 @@ async def config_unset(name: str) -> WerkzeugResponse:
@app.post("/cli/local/launch")
async def cli_local_launch() -> WerkzeugResponse:
breakpoint()
# TODO uncomment in production
# tutorclient.CliPool.run_parallel(app, ["local", "launch", "--non-interactive"])
tutorclient.CliPool.run_parallel(app, ["local", "launch", "--non-interactive"])
return redirect(url_for("cli_logs"))

View File

@ -54,8 +54,8 @@
</div>
<div class="footer">
<div>
<div class="username">Bismah Azhar</div>
<div class="email">bismah.azhar@arbisoft.com</div>
<div class="username">Firstname Lastname</div>
<div class="email">test@test.com</div>
</div>
<div>
<img src="{{ url_for('static', filename='/img/Button.svg') }}" height="40rem"/>

View File

@ -1,7 +1,7 @@
{% extends "workspace_header_general.html" %}
{% block page_title %}Plugin Marketplace{% endblock %}
{% block page_description %}View and install available plugins.{% endblock %}
{% block page_title %}My Plugins{% endblock %}
{% block page_description %}View all your installed plugins in one place.{% endblock %}
{% block page_button %}
<button class="btn btn-primary" type="button" data-bs-toggle="modal" data-bs-target="#exampleModal">Local Launch</button>
{% endblock %}