Jeff Kilbride

Results 6 issues of Jeff Kilbride

Hi Rick, I noticed some errors in the `/var/log/healthd/daemon.log` file recently. The default `nginx` setup has `/var/log/nginx` permissions set to 700. This PR changes them to 755, so the `healthd`...

As stated in https://github.com/AnomalyInnovations/serverless-bundle/issues/55#issuecomment-588051621 -- the current way the configuration for `jest` is built, based on the `create-react-app` model, is very restrictive. There are many options it would be nice...

@mhart First, thanks for all the contributions! I've used / gotten inspiration from several of your node-based containers from docker hub. When I'm testing, I prefer to start the container...

#### Operating system and version: Intel MacOS 12.6.3 #### `nvm debug` output: ```sh $ nvm debug nvm --version: v0.39.3 $TERM_PROGRAM: iTerm.app $SHELL: /bin/bash $SHLVL: 1 whoami: 'jeff' ${HOME}: /Users/jeff ${NVM_DIR}:...

informational
pull request wanted

Installation is failing with React 18 due to peer dependencies in package.json: ``` "peerDependencies": { "react": "^16.8.3 || ^17.0.0", "react-table": "^7.0.5" }, ``` ``` $ npm install npm ERR! code...

You guys have the following in your example: pip3 install -f requirements.txt It should be: pip3 install -r requirements.txt At least, that's what worked for me. Thanks!