RealGecko
RealGecko
> Hmm interesting. Would you be able to share some logs with us? See [the troubleshooting section](https://github.com/astral-sh/ruff-vscode?tab=readme-ov-file#troubleshooting) for how you can enable logging I've set `"ruff.trace.server": "verbose"` in my `settings.json`...
> I seem to have this issue as well. Pinning Ruff leads to a spinning icon next to it. > > I've found a workaround for now: select the interpreter...
Hey everyone! I have an update on the issue: by analyzing `Extnsion Host(Remote)` logs I've noticed an error related to not being able to locate `/usr/bin/python`, I've checked on the...
Alas no:  I've deleted Infisical record from DB and retried everything from scratch, after `login` a new record is successfully created, but `init` still fails 

 But there's definitely a progress, DB was locked when I issued command, and keepass asked confirmation for request. However result is not positive yet.
``` realgecko@rog-strix ~/W/O/f/backend (master)> infisical reset Reset successful realgecko@rog-strix ~/W/O/f/backend (master)> infisical login ✔ Self Hosting ✔ Domain: ***********█ To complete your login, open this address in your browser: ***********/login?callback_port=40353...
Tested with 0.39.1 and it works, thanks!
So, what I've achieved so far: ```python app = APIFlask(__name__, instance_relative_config=True, spec_path="/api/spec") app.config["LOCAL_SPEC_PATH"] = "openapi.json" app.config["SYNC_LOCAL_SPEC"] = True @app.route("/spec") def spec(): with open("openapi.json", "r") as f: return f.read(), 200, {"content-type":...
My current solution for now that works: ```python application = APIFlask( __name__, instance_relative_config=True, spec_path="/api/spec", enable_openapi=settings.DEBUG, docs_ui="rapidoc" ) @application.route("/spec") def spec(): return redirect("/api/api/spec") ``` So, I'm redirecting requests from `/api/spec` to...