Daniel Gustaw
Daniel Gustaw
I experiencing this error on production. Is there any workaround? Should I replace caddy with letsencrypt + nginx or better wait for this update?
The same problem with `docker compose`. Only .env that i see in `process` are ``` FAST_REFRESH: true NODE_ENV: "production" PUBLIC_URL: "." WDS_SOCKET_HOST: undefined WDS_SOCKET_PATH: undefined WDS_SOCKET_PORT: undefined ```
I will accept when: - it will be changed in all places in code and docs - backward compatibility will be provided It is good change, thanks for support.
https://docs.fedoraproject.org/en-US/package-maintainers/New_Package_Process_for_New_Contributors/
@jshimko we can add this to your repo if you want. There is open PR to install python by conda
Now `PYTHON_VERSION` isn't required in `launchpad.conf` because we can derive it from node js version
Solution: in file `install-deps.sh` remove `python` or replace it by ` python-is-python3`. Both solutions works in my case. @jshimko is there any package that require python here, or can we...
I solved it month ago here https://github.com/jshimko/meteor-launchpad/issues/148 and created fork https://github.com/gustawdaniel/meteor-launchpad with image `gustawdaniel/meteor-launchpad` but today experienced problem ``` gyp: binding.gyp not found (cwd: /home/daniel/pro/mrr) while trying to load binding.gyp...
@guyellis I tried ``` import SelectInput from 'ink-select-input'; import { Item } from 'ink-select-input/build/SelectInput'; ``` and have error ``` TS2307: Cannot find module 'ink-select-input/build/SelectInput' or its corresponding type declarations. ```
Ok. I had ``` type Environment = 'beta' | 'production'; const handleSelect = (item: { label: Environment, value: Environment}) => { props.setEnv(item.value) }; const items:Array = [ { label: 'beta',...