Derek Kulinski
Derek Kulinski
After thinking about what I got in previous comment I tried something once more: ```nix layers = [ (n2c.buildLayer { deps = [ python ]; }) (n2c.buildLayer { deps =...
I think I got hang of it, and probably the best way is to use it with `let`. This is how I'm using it in my project and looks like...
@antonpirker so my team we didn't have enough resources to maintaining self-hosted sentry, and we also were unable to convince management why we should use hosted version, so we can't...
Ah, I guess this issue might be on darwin then. Though this creates an issue, as ddtrace currently can't be compiled (I started working on it, but still did not...
What about different versions of API, are the old versions are still needed?
I used this myself: ```bash function join_elements { local prefix="-path */" separator=" -o " local prefixed=("${@/#/$prefix}") local rest=("${prefixed[@]:1}") local separated=$(printf "%s" "${prefixed[0]}${rest[@]/#/$separator}") echo "${separated[@]}" } function remove_but_latest { local latest=$(ls...
There is no more development work on Python 2.7 for almost 3 years now and in 2 years Python 2.7 will stop receiving security patches, why this issue has no...
Guidance: how to reproducibly build a global package with plugins (e.g. serverless + couple plugins)
After studying more about nodejs I think the grunt example is what supposed to target my use case, so I created: package.json ```json { "name": "testapp", "version": "0.1.0", "private": "true",...
Guidance: how to reproducibly build a global package with plugins (e.g. serverless + couple plugins)
serverless was working for me, but it didn't see the plugins (serverless-python-requirements and serverless-step-functions)
Guidance: how to reproducibly build a global package with plugins (e.g. serverless + couple plugins)
Looks like the issue I was having was not because of `node2nix`, but because how serverless works, so I'm guessing this ticket can be closed.