Colin Gravill
Colin Gravill
> We're not using the host config for `autocrlf`, only for the email and the credential helper. Setting `core.autocrlf=false`, `core.eol=lf` and gitattributes `text=auto` pre-clone would definitely be an option. I'd...
> Alternatively you may try dumping your latest changes in a git stash, open the folder in devcontainer, discard all changes in the container and then pop the stash. >...
> AFIK if you are loading a local folder it just streams the contents as is. It doesn't really manipulate the contents with git. Hell it will even copy the...
Just to note using `.gitattributes` to force LF worked around the issue. To be explicit for others: ``` *.sh eol=lf ``` So we're unblocked on this, though it'd be great...
Hi @vincentdeman you need to build REInteractiveAPI manually yourself, in Release mode. Related I've just pushed some fixes on #12 for changes to F# rules since this project was released....
Reducing the minimum size requirement on LocalMBraceCache would be really useful for supporting the D-series virtual machines. They have better compute than corresponding As but fairly low storage e.g. I...
Thanks, that’s useful. We actually have our own cancellation tokens inside run_simulation that we can map onto in this case. Are there any options for preemptive termination within MBrace? For...
In case it's useful it's now working layered with nginx: ``` server { listen 7001; location / { proxy_pass http://localhost:5000; # Always strip Content-Encoding for .tar.gz files proxy_set_header Host $host;...
Yes, that works thanks. I also see that's documented on https://github.com/EpicWink/proxpi?tab=readme-ov-file#environment-variables For us: ``` PROXPI_BINARY_FILE_MIME_TYPE=1 FLASK_APP=proxpi.server uv run flask run ``` and then ``` UV_DEFAULT_INDEX=http://localhost:5000/index/ uv sync --verbose --no-cache --reinstall...
It does seem like defaulting to more closely matching pypi.org would cause less issues, just thinking in terms of proxpi being more a drop in replacement for PyPI. In any...