cheeselemon / ophiuchi-desktop

A local https proxy server using docker as backend
MIT License
1.25k stars 47 forks source link

Ophiuchi - Setup Localhost SSL Proxy in 5 Seconds! | Product Hunt

Ophiuchi - Localhost SSL Proxy Server Manager

Screenshot 2024-06-10 at 11 56 57 AM

Originally created by @cheeselemon


Related Websites about Ophiuchi Desktop

Website

Discord Channel

Development

npm run tauri dev
CI=true npm run tauri build 

Release with debuggable build

npm run tauri build -- --debug

Resolving Tauri Build Error: "No such file or directory (os error 2)"

The error you're encountering indicates that Tauri is trying to use Rust's Cargo build system, but it cannot find the necessary Rust setup to compile the project. This is likely because either Rust is not installed, or the environment isn’t configured properly for Tauri's Rust dependencies.

Steps to Resolve

1. Install Rust

Tauri uses Rust, so ensure you have the Rust toolchain installed. You can install Rust using rustup:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Set Up Tauri’s Rust Targets

Since you are building for universal-apple-darwin, you will need to install the necessary Rust targets. Use:

rustup target add aarch64-apple-darwin x86_64-apple-darwin

Run the Build Command Again

After setting up Rust and the necessary targets, try running the build command again:

npm run tauri build -- --debug

notes

https://discord.com/channels/616186924390023171/1096449326672248903/1096449326672248903