I hereby claim:
- I am hhoechtl on github.
- I am htuscher (https://keybase.io/htuscher) on keybase.
- I have a public key ASDRch2Q2qmqSKqz12su02CIzIfFYSn_5x8r_VvngMNXgQo
To claim this, I am signing this object:
| { pkgs, lib, config, ... }: | |
| { | |
| certificates = [ | |
| "shopware.dev" | |
| ]; | |
| hosts."shopware.dev" = "127.0.0.1"; | |
| packages = [ |
I hereby claim:
To claim this, I am signing this object:
| FROM jboss/keycloak:15.0.2 | |
| ENV KEYCLOAK_WELCOME_THEME=mytheme | |
| ENV KEYCLOAK_DEFAULT_THEME=mytheme | |
| COPY theme /opt/jboss/keycloak/themes/mytheme |
| <?php | |
| define('DB_NAME', 'wordpress'); | |
| /** MySQL database username */ | |
| define('DB_USER', 'dbuser'); | |
| /** MySQL database password */ | |
| define('DB_PASSWORD', 'dbpassword'); | |
| /** MySQL hostname */ | |
| define('DB_HOST', 'localhost'); |
| # Copy this file to /opt/docker/etc/supervisor.d/worker.conf | |
| [group:worker] | |
| programs=queue-worker | |
| priority=25 | |
| [program:queue-worker] | |
| command = /app/bin/console messenger:consume default --time-limit=180 -vv | |
| user = application | |
| process_name=%(program_name)s |
| <?php declare(strict_types=1); | |
| namespace Shopware\Core\Framework\DataAbstractionLayer\Doctrine; | |
| class FetchModeHelper | |
| { | |
| /** | |
| * User-land implementation of PDO::FETCH_KEY_PAIR | |
| */ | |
| public static function keyPair(array $result): array |
| <?php | |
| declare(strict_types=1); | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2020 Hans Hoechtl <[email protected]> | |
| * All rights reserved | |
| ***************************************************************/ | |
| namespace Onedrop\Platform\Command; |
| #!/usr/bin/env bash | |
| bin/console cache:clear | |
| bin/console database:migrate --all | |
| bin/console plugin:refresh | |
| # Ensure plugins are installed and active | |
| bin/console plugin:install --activate FroshPlatformMailArchive | |
| bin/console plugin:install --activate FroshPlatformTemplateMail |