mint
mint copied to clipboard
http proxy support.
Pls add http proxy in config.
We can not access modio without a proxy.
I "fixed" this by setting https_proxy in powershell and start MINT from it. Still better if we can set it directly in app.
Thanks for the inspiration. I created a start.ps1 file and wrote the following code:
$env:HTTP_PROXY = "http://127.0.0.1:8888"
$env:HTTPS_PROXY = "http://127.0.0.1:8888"
Write-Host "HTTP_PROXY: $($env:HTTP_PROXY)"
Write-Host "HTTPS_PROXY: $($env:HTTPS_PROXY)"
.\drg_mod_integration
Then run start.ps1 to start mint. This workaround works well for me but still wish that we could set the proxy directly in mint :)