Customer
Comments
-
On a PHP app, I needed to install a nested Python app but if a python3 command is already present in the container, it is not complete and pip is missing.pip cannot get installed separetly in build...
-
I’ve tried this as I need to install gdal library but I get brew not found when I try and install my package in the build hook. When I ssh in brew is not available,
-
Another option for filtering out the initial output from the platform.sh log command is to redirect stderr: platform log access --tail 2>/dev/null | goaccess --log-format=COMBINED -
-
You can also use GoAccess to analyse response times from PHP based on the PHP access log. The log format here is quite different but the configuration options in GoAccess makes it quite flexible. p...
-
Hey! I haven’t been able to replicate your issue. Could you tell me what version of PHP you’re using and show me your build hook? Thanks!
-
I still haven’t been able to replicate your npx error using a similar build hook. If we follow what happens during your build hook once you’ve installed nvm, we have: nvm current: should display ...
-
Sure, here’s a portion of my YAML: # The name of this app. Must be unique within a project. name: app # The type of the application to build. type: 'php:7.4' build: flavor: composer variables...
-
Hey Rudy, I agree with the steps and how you describe them: nvm current displays system nvm install 12.16.1 does its job npm run quiet-build, too But what I’m looking for is the ability to ru...
-
Oh, if you want to be able to run npx via SSH directly in your container, then it’s a different story! When connecting with platform ssh and running npx -v I get -bash: npx: command not found (whi...
-
Current fix (but looks like a hack to me): Replace npx --no-install calls with /app/.nvm/versions/node/v12.16.1/bin/node /app/.nvm/versions/node/v12.16.1/bin/npx --no-install