Mathieu Rochette
Mathieu Rochette
if I recall correctly, the issue with `create type` is that it makes all fields nullable
@klemens-morgenstern it’s nice to see alternatives, I like the third option. The second one does not allow implementing multiple interfaces, so I think that would be a problem. The first...
@Biont it's not too bad if we want to include the defaults providers, just add something like this in the config file: ``` [desktop] list_cmd=/path/to/sway-launcher-desktop.sh list-entries preview_cmd=/path/to/sway-launcher-desktop.sh describe-desktop "{1}" launch_cmd=/path/to/sway-launcher-desktop.sh...
@ryneeverett yes development probably have different needs than production mode. I don't have much knowledge about python dev so I'm mostly going on this for the production version. someone else...
other things to consider: * [ ] setup on first run so that it can write inside mounted volume * [ ] setup variable env (language, home, password?, etc.) *...
@BjarniRunar the key generation failure comes of the upgrade to gnupg 2 in ubuntu 16.04. in #1699 I'm forcing gnupg 1. going back to 14.04 shoudl fix it. to remember...
it seems to be working fine when I'm using alpine, maybe it's because I'm running plain docker and not boot2docker
> would adding a use function Symfony\Component\DependencyInjection\Loader\Configurator\env; statement work? The code still works, and it silences the `SlevomatCodingStandard.Namespaces.FullyQualifiedGlobalFunctions` but triggers another one: ``` Use Symfony\Component\DependencyInjection\Loader\Configurator\env is from the same namespace...
the function is from a dependency (https://github.com/symfony/symfony/blob/6.2/src/Symfony/Component/DependencyInjection/Loader/Configurator/ContainerConfigurator.php#L174) it's when calling the `env()` function that this cause an issue, obviously I can also use `// phpcs:disable ...` to hide it. but...
> There is nothing in the sniff treating "env" as special yes it does, the sniff is `FullyQualified*Global*Functions` > calling any of the [Symfony\Component\DependencyInjection\Loader\Configurator](https://raw.githubusercontent.com/symfony/symfony/123b1651c4a7e219ba59074441badfac65525efe/src/Symfony/Component/DependencyInjection/Loader/Configurator/ContainerConfigurator.php) namespace functions would also trigger the...