Alan Plum
Alan Plum
Interesting. Closer inspection of node's context objects reveals that upon running something in a context the context object receives its own (non-enumerable) copy of every global, which is not identical...
The dev-mode logic changed several ArangoDB versions ago. Apps are now no longer mounted in a different place when in dev mode, instead dev mode can be toggled per-app. @neunhoef...
/cc @joerg84 This is a papercut I ran into while using docker with Foxx myself. The workaround is clunky and fragile. I don't think it would be too complicated to...
I think the bare name is the official release and the namespaced one was used for the experimental alpine releases which are now the default?
Those are two different invocations: `foxx install -H dev /hello ./` vs `foxx install -H dev /hello` That said, it looks like it's trying to convert the mount path to...
I have no way to replicate this on MINGW64 and suspect this my be a yargs related issue.
As a workaround, I was able to wrap the `entrypoint.sh` with my own to perform an upgrade on every restart of the container by deriving my own dockerfile: ```dockerfile FROM...
Hi @qohelet, the deprecation warning you're seeing is from the `foxx-manager` CLI tool that is currently still bundled with ArangoDB for backwards compatibility as it is no longer maintained and...
@Simran-B that seems like a good idea for now.
The problem here is that the port is different during the init phase. By default it'll be 8999 but it's exposed in an env. Try something like ```sh foxx install...