RealGecko

Results 200 comments of 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: ![image](https://github.com/user-attachments/assets/c51f29a6-cb0e-4748-ac6b-8616befedfd6) I've deleted Infisical record from DB and retried everything from scratch, after `login` a new record is successfully created, but `init` still fails ![image](https://github.com/user-attachments/assets/9c1b9c0f-403f-4343-867f-aec59e982ae9)

![image](https://github.com/user-attachments/assets/1c5d19f7-5f5b-41a6-88cc-1d2e9503f980)

![image](https://github.com/user-attachments/assets/8494235e-e976-4ed3-ac9b-5f891e7e59f0) 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...