seybsen
seybsen
@kparkov My workaround was using `local.exec` instead of `local.transfer`. For example: `local.exec('rsync -rz --chmod=ugo=rwX --delete --exclude \'shared\' ./dist/ ' + host.username + '@' + host.host + ':' + plan.runtime.options.projectDir +...
I'm also struggling with the integration of your library. I'm using vue-quagga (https://github.com/sin-tanaka/vue-quagga) and get the code in its callback (onDetected). But I don't know how to throttle the results...
It could be a new script like [set_currency.php](https://github.com/seybsen/dockware/blob/master/template/assets/assets/shopware6/files/set_currency.php.twig) which also gets executed in [entrypoint.sh](https://github.com/dockware/dockware/blob/master/.dist/versions/master/play/6.4.10.1/entrypoint.sh#L76) and runs following statements (e.g. EN -> DE): ``` UPDATE language SET id = UNHEX(REPLACE(UUID(), '-',''))...
Hey, I tried plain http and left the storefront URL at its default(?) value `http://localhost`. The webpack proxy was listening on `http://localhost:9998/`.
Reproduction example: docker-compose.yml ``` version: "3" services: shopware: # use either tag "latest" or any other version like "6.1.5", ... image: dockware/dev:latest container_name: shopware ports: - "80:80" - "3306:3306" -...
A config option to set paths to `php` and `nohup` would be nice for hosts which have multiple php versions installed (e.g. Plesk)
I diffed https://github.com/teamcfadvance/cfstatic/blob/master/org/cfstatic/CfStatic.cfc with our copy of the file. The only thing we changed for CF2021 was this line: https://github.com/teamcfadvance/cfstatic/blob/master/org/cfstatic/CfStatic.cfc#L211 our timeout is set to `100` instead of `1`, but...