├── .deepsource.toml ├── .editorconfig ├── .env.dist ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── lint.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── adminer.env ├── completion.fish ├── completion.sh ├── default.vcl ├── docker.env ├── functions.sh ├── modules ├── base │ ├── command-list.sh │ ├── completion.sh │ ├── configure.help │ ├── configure.sh │ ├── console.help │ ├── console.sh │ ├── console.usage │ ├── create-project.help │ ├── create-project.sh │ ├── debug-logs.help │ ├── debug-logs.sh │ ├── down.help │ ├── down.sh │ ├── drop.help │ ├── drop.sh │ ├── es-clear.help │ ├── es-clear.sh │ ├── generate-command-list.help │ ├── generate-command-list.sh │ ├── header.txt │ ├── help.help │ ├── help.sh │ ├── log.help │ ├── log.sh │ ├── mysql-exec-watch.help │ ├── mysql-exec-watch.sh │ ├── mysql-watch.help │ ├── mysql-watch.sh │ ├── mysql.help │ ├── mysql.sh │ ├── open.help │ ├── open.sh │ ├── pshell.help │ ├── pshell.sh │ ├── redis-clear.help │ ├── redis-clear.sh │ ├── redis-cli.help │ ├── redis-cli.sh │ ├── rsnap.help │ ├── rsnap.sh │ ├── shell-root.help │ ├── shell-root.sh │ ├── shell.help │ ├── shell.sh │ ├── shell.usage │ ├── snap.help │ ├── snap.sh │ ├── tool-cache-clear.help │ ├── tool-cache-clear.sh │ ├── up.help │ ├── up.sh │ ├── update-images.help │ ├── update-images.sh │ ├── varnish-clear.help │ └── varnish-clear.sh ├── classic-composer │ ├── build.help │ └── build.sh ├── classic-zip │ ├── build.help │ └── build.sh ├── classic │ ├── apply.help │ ├── apply.sh │ ├── apply.usage │ ├── build.help │ ├── build.sh │ ├── config.help │ ├── config.sh │ ├── config.usage │ ├── download-testimages.help │ ├── download-testimages.sh │ ├── fix-config.php │ ├── fixtures │ │ ├── api.sql │ │ ├── bi-reset.sql │ │ ├── en.sql │ │ ├── force-compile.sql │ │ └── netto-bug.sql │ ├── hooks.help │ ├── hooks.sh │ ├── mink.help │ ├── mink.sh │ ├── snippets.help │ ├── snippets.sh │ ├── test.help │ ├── test.sh │ ├── unit.help │ ├── unit.sh │ ├── update-test.help │ └── update-test.sh ├── defaults │ ├── base-up.sh │ └── local-up.sh ├── platform-local │ ├── admin-watch.help │ ├── admin-watch.sh │ ├── build.sh │ ├── e2e.help │ ├── e2e.sh │ ├── feature.help │ ├── feature.sh │ ├── init-test-db.help │ ├── init-test-db.sh │ ├── locust.help │ ├── locust.sh │ ├── npm-remove.help │ ├── npm-remove.sh │ ├── storefront-hot.help │ ├── storefront-hot.sh │ ├── storefront-watch.help │ ├── storefront-watch.sh │ ├── test.help │ ├── test.sh │ ├── update.help │ └── update.sh ├── platform-prod │ └── build.sh └── platform │ ├── admin-build.help │ ├── admin-build.sh │ ├── admin-init.help │ ├── admin-init.sh │ ├── admin-jest.help │ ├── admin-jest.sh │ ├── admin-watch.help │ ├── admin-watch.sh │ ├── build-with-old-demo-data.help │ ├── build-with-old-demo-data.sh │ ├── build.help │ ├── build.sh │ ├── check.help │ ├── check.sh │ ├── config-add.help │ ├── config-add.sh │ ├── config-remove.help │ ├── config-remove.sh │ ├── config-set.help │ ├── config-set.sh │ ├── hot-proxy-patched.js │ ├── paratest.help │ ├── paratest.sh │ ├── queue-clear.help │ ├── queue-clear.sh │ ├── run.help │ ├── run.sh │ ├── storefront-build.help │ ├── storefront-build.sh │ ├── storefront-init.help │ ├── storefront-init.sh │ ├── storefront-watch.help │ ├── storefront-watch.sh │ ├── test.help │ ├── test.sh │ ├── update.help │ ├── update.sh │ ├── worker-logs.help │ ├── worker-logs.sh │ ├── worker.help │ └── worker.sh ├── phpmyadmin.env ├── swdc └── swdc-inside /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [shyim] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/README.md -------------------------------------------------------------------------------- /adminer.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/adminer.env -------------------------------------------------------------------------------- /completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/completion.fish -------------------------------------------------------------------------------- /completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/completion.sh -------------------------------------------------------------------------------- /default.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/default.vcl -------------------------------------------------------------------------------- /docker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/docker.env -------------------------------------------------------------------------------- /functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/functions.sh -------------------------------------------------------------------------------- /modules/base/command-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/command-list.sh -------------------------------------------------------------------------------- /modules/base/completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/completion.sh -------------------------------------------------------------------------------- /modules/base/configure.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/configure.help -------------------------------------------------------------------------------- /modules/base/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/configure.sh -------------------------------------------------------------------------------- /modules/base/console.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/console.help -------------------------------------------------------------------------------- /modules/base/console.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/console.sh -------------------------------------------------------------------------------- /modules/base/console.usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/console.usage -------------------------------------------------------------------------------- /modules/base/create-project.help: -------------------------------------------------------------------------------- 1 | Creates a new Shopware 6 Installation -------------------------------------------------------------------------------- /modules/base/create-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/create-project.sh -------------------------------------------------------------------------------- /modules/base/debug-logs.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/debug-logs.help -------------------------------------------------------------------------------- /modules/base/debug-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/debug-logs.sh -------------------------------------------------------------------------------- /modules/base/down.help: -------------------------------------------------------------------------------- 1 | Stops the containers -------------------------------------------------------------------------------- /modules/base/down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/down.sh -------------------------------------------------------------------------------- /modules/base/drop.help: -------------------------------------------------------------------------------- 1 | Drops the database -------------------------------------------------------------------------------- /modules/base/drop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/drop.sh -------------------------------------------------------------------------------- /modules/base/es-clear.help: -------------------------------------------------------------------------------- 1 | Deletes everything from elasticsearch server -------------------------------------------------------------------------------- /modules/base/es-clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/es-clear.sh -------------------------------------------------------------------------------- /modules/base/generate-command-list.help: -------------------------------------------------------------------------------- 1 | Generates the command list for README.md -------------------------------------------------------------------------------- /modules/base/generate-command-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/generate-command-list.sh -------------------------------------------------------------------------------- /modules/base/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/header.txt -------------------------------------------------------------------------------- /modules/base/help.help: -------------------------------------------------------------------------------- 1 | Lists all commands -------------------------------------------------------------------------------- /modules/base/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/help.sh -------------------------------------------------------------------------------- /modules/base/log.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/log.help -------------------------------------------------------------------------------- /modules/base/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/log.sh -------------------------------------------------------------------------------- /modules/base/mysql-exec-watch.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/mysql-exec-watch.help -------------------------------------------------------------------------------- /modules/base/mysql-exec-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/mysql-exec-watch.sh -------------------------------------------------------------------------------- /modules/base/mysql-watch.help: -------------------------------------------------------------------------------- 1 | Watches the mysql process list -------------------------------------------------------------------------------- /modules/base/mysql-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/mysql-watch.sh -------------------------------------------------------------------------------- /modules/base/mysql.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/mysql.help -------------------------------------------------------------------------------- /modules/base/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/mysql.sh -------------------------------------------------------------------------------- /modules/base/open.help: -------------------------------------------------------------------------------- 1 | Opens the given shop in browser -------------------------------------------------------------------------------- /modules/base/open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/open.sh -------------------------------------------------------------------------------- /modules/base/pshell.help: -------------------------------------------------------------------------------- 1 | Opens a shell in the specific project -------------------------------------------------------------------------------- /modules/base/pshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/pshell.sh -------------------------------------------------------------------------------- /modules/base/redis-clear.help: -------------------------------------------------------------------------------- 1 | Clears all redis databases -------------------------------------------------------------------------------- /modules/base/redis-clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/redis-clear.sh -------------------------------------------------------------------------------- /modules/base/redis-cli.help: -------------------------------------------------------------------------------- 1 | Opens the Redis-CLI -------------------------------------------------------------------------------- /modules/base/redis-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/redis-cli.sh -------------------------------------------------------------------------------- /modules/base/rsnap.help: -------------------------------------------------------------------------------- 1 | Loads back a created snapshot -------------------------------------------------------------------------------- /modules/base/rsnap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/rsnap.sh -------------------------------------------------------------------------------- /modules/base/shell-root.help: -------------------------------------------------------------------------------- 1 | Joins into the cli container as root user -------------------------------------------------------------------------------- /modules/base/shell-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/shell-root.sh -------------------------------------------------------------------------------- /modules/base/shell.help: -------------------------------------------------------------------------------- 1 | Joins into the cli container as normal user -------------------------------------------------------------------------------- /modules/base/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/shell.sh -------------------------------------------------------------------------------- /modules/base/shell.usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/shell.usage -------------------------------------------------------------------------------- /modules/base/snap.help: -------------------------------------------------------------------------------- 1 | Creates a new snapshot -------------------------------------------------------------------------------- /modules/base/snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/snap.sh -------------------------------------------------------------------------------- /modules/base/tool-cache-clear.help: -------------------------------------------------------------------------------- 1 | Clears the tool cache -------------------------------------------------------------------------------- /modules/base/tool-cache-clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/tool-cache-clear.sh -------------------------------------------------------------------------------- /modules/base/up.help: -------------------------------------------------------------------------------- 1 | Starts the containers -------------------------------------------------------------------------------- /modules/base/up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/up.sh -------------------------------------------------------------------------------- /modules/base/update-images.help: -------------------------------------------------------------------------------- 1 | Updates used docker images -------------------------------------------------------------------------------- /modules/base/update-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/base/update-images.sh -------------------------------------------------------------------------------- /modules/base/varnish-clear.help: -------------------------------------------------------------------------------- 1 | Bans all varnish cache -------------------------------------------------------------------------------- /modules/base/varnish-clear.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | compose exec cli curl -X BAN http://varnish -------------------------------------------------------------------------------- /modules/classic-composer/build.help: -------------------------------------------------------------------------------- 1 | Reinstalls the database -------------------------------------------------------------------------------- /modules/classic-composer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic-composer/build.sh -------------------------------------------------------------------------------- /modules/classic-zip/build.help: -------------------------------------------------------------------------------- 1 | Reinstalls the database -------------------------------------------------------------------------------- /modules/classic-zip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic-zip/build.sh -------------------------------------------------------------------------------- /modules/classic/apply.help: -------------------------------------------------------------------------------- 1 | Applies a database fixture 2 | -------------------------------------------------------------------------------- /modules/classic/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/apply.sh -------------------------------------------------------------------------------- /modules/classic/apply.usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/apply.usage -------------------------------------------------------------------------------- /modules/classic/build.help: -------------------------------------------------------------------------------- 1 | Reinstalls the database -------------------------------------------------------------------------------- /modules/classic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/build.sh -------------------------------------------------------------------------------- /modules/classic/config.help: -------------------------------------------------------------------------------- 1 | Applies fixture to the config.php -------------------------------------------------------------------------------- /modules/classic/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/config.sh -------------------------------------------------------------------------------- /modules/classic/config.usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/config.usage -------------------------------------------------------------------------------- /modules/classic/download-testimages.help: -------------------------------------------------------------------------------- 1 | Download and extract shopware testimages -------------------------------------------------------------------------------- /modules/classic/download-testimages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/download-testimages.sh -------------------------------------------------------------------------------- /modules/classic/fix-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/fix-config.php -------------------------------------------------------------------------------- /modules/classic/fixtures/api.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/fixtures/api.sql -------------------------------------------------------------------------------- /modules/classic/fixtures/bi-reset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/fixtures/bi-reset.sql -------------------------------------------------------------------------------- /modules/classic/fixtures/en.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/fixtures/en.sql -------------------------------------------------------------------------------- /modules/classic/fixtures/force-compile.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/fixtures/force-compile.sql -------------------------------------------------------------------------------- /modules/classic/fixtures/netto-bug.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/fixtures/netto-bug.sql -------------------------------------------------------------------------------- /modules/classic/hooks.help: -------------------------------------------------------------------------------- 1 | Fixes the hooks for git -------------------------------------------------------------------------------- /modules/classic/hooks.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | checkParameter 4 | fixHooks 5 | -------------------------------------------------------------------------------- /modules/classic/mink.help: -------------------------------------------------------------------------------- 1 | Starts the Browser tests -------------------------------------------------------------------------------- /modules/classic/mink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/mink.sh -------------------------------------------------------------------------------- /modules/classic/snippets.help: -------------------------------------------------------------------------------- 1 | Reimports all snippets -------------------------------------------------------------------------------- /modules/classic/snippets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/snippets.sh -------------------------------------------------------------------------------- /modules/classic/test.help: -------------------------------------------------------------------------------- 1 | Runs all tests -------------------------------------------------------------------------------- /modules/classic/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/test.sh -------------------------------------------------------------------------------- /modules/classic/unit.help: -------------------------------------------------------------------------------- 1 | Runs only unit tests -------------------------------------------------------------------------------- /modules/classic/unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/unit.sh -------------------------------------------------------------------------------- /modules/classic/update-test.help: -------------------------------------------------------------------------------- 1 | Simulate a update -------------------------------------------------------------------------------- /modules/classic/update-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/classic/update-test.sh -------------------------------------------------------------------------------- /modules/defaults/base-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/defaults/base-up.sh -------------------------------------------------------------------------------- /modules/defaults/local-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/defaults/local-up.sh -------------------------------------------------------------------------------- /modules/platform-local/admin-watch.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/admin-watch.help -------------------------------------------------------------------------------- /modules/platform-local/admin-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/admin-watch.sh -------------------------------------------------------------------------------- /modules/platform-local/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/build.sh -------------------------------------------------------------------------------- /modules/platform-local/e2e.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/e2e.help -------------------------------------------------------------------------------- /modules/platform-local/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/e2e.sh -------------------------------------------------------------------------------- /modules/platform-local/feature.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/feature.help -------------------------------------------------------------------------------- /modules/platform-local/feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/feature.sh -------------------------------------------------------------------------------- /modules/platform-local/init-test-db.help: -------------------------------------------------------------------------------- 1 | Initializes the test database -------------------------------------------------------------------------------- /modules/platform-local/init-test-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/init-test-db.sh -------------------------------------------------------------------------------- /modules/platform-local/locust.help: -------------------------------------------------------------------------------- 1 | Starts the locust service -------------------------------------------------------------------------------- /modules/platform-local/locust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/locust.sh -------------------------------------------------------------------------------- /modules/platform-local/npm-remove.help: -------------------------------------------------------------------------------- 1 | Deletes all node_modules folders -------------------------------------------------------------------------------- /modules/platform-local/npm-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/npm-remove.sh -------------------------------------------------------------------------------- /modules/platform-local/storefront-hot.help: -------------------------------------------------------------------------------- 1 | Starts the Storefront Watcher -------------------------------------------------------------------------------- /modules/platform-local/storefront-hot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/storefront-hot.sh -------------------------------------------------------------------------------- /modules/platform-local/storefront-watch.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/storefront-watch.help -------------------------------------------------------------------------------- /modules/platform-local/storefront-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/storefront-watch.sh -------------------------------------------------------------------------------- /modules/platform-local/test.help: -------------------------------------------------------------------------------- 1 | Run the test suite -------------------------------------------------------------------------------- /modules/platform-local/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/test.sh -------------------------------------------------------------------------------- /modules/platform-local/update.help: -------------------------------------------------------------------------------- 1 | Updates Shopware 6 -------------------------------------------------------------------------------- /modules/platform-local/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-local/update.sh -------------------------------------------------------------------------------- /modules/platform-prod/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform-prod/build.sh -------------------------------------------------------------------------------- /modules/platform/admin-build.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/admin-build.help -------------------------------------------------------------------------------- /modules/platform/admin-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/admin-build.sh -------------------------------------------------------------------------------- /modules/platform/admin-init.help: -------------------------------------------------------------------------------- 1 | Installs required npm modules -------------------------------------------------------------------------------- /modules/platform/admin-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/admin-init.sh -------------------------------------------------------------------------------- /modules/platform/admin-jest.help: -------------------------------------------------------------------------------- 1 | Runs the Jest tests -------------------------------------------------------------------------------- /modules/platform/admin-jest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/admin-jest.sh -------------------------------------------------------------------------------- /modules/platform/admin-watch.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/admin-watch.help -------------------------------------------------------------------------------- /modules/platform/admin-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/admin-watch.sh -------------------------------------------------------------------------------- /modules/platform/build-with-old-demo-data.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/build-with-old-demo-data.help -------------------------------------------------------------------------------- /modules/platform/build-with-old-demo-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/build-with-old-demo-data.sh -------------------------------------------------------------------------------- /modules/platform/build.help: -------------------------------------------------------------------------------- 1 | Reinstalls the database -------------------------------------------------------------------------------- /modules/platform/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/build.sh -------------------------------------------------------------------------------- /modules/platform/check.help: -------------------------------------------------------------------------------- 1 | Checks code for ci issues -------------------------------------------------------------------------------- /modules/platform/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/check.sh -------------------------------------------------------------------------------- /modules/platform/config-add.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/config-add.help -------------------------------------------------------------------------------- /modules/platform/config-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/config-add.sh -------------------------------------------------------------------------------- /modules/platform/config-remove.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/config-remove.help -------------------------------------------------------------------------------- /modules/platform/config-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/config-remove.sh -------------------------------------------------------------------------------- /modules/platform/config-set.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/config-set.help -------------------------------------------------------------------------------- /modules/platform/config-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/config-set.sh -------------------------------------------------------------------------------- /modules/platform/hot-proxy-patched.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/hot-proxy-patched.js -------------------------------------------------------------------------------- /modules/platform/paratest.help: -------------------------------------------------------------------------------- 1 | Runs the PHPUnit tests parallel 2 | -------------------------------------------------------------------------------- /modules/platform/paratest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/paratest.sh -------------------------------------------------------------------------------- /modules/platform/queue-clear.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/queue-clear.help -------------------------------------------------------------------------------- /modules/platform/queue-clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/queue-clear.sh -------------------------------------------------------------------------------- /modules/platform/run.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/run.help -------------------------------------------------------------------------------- /modules/platform/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/run.sh -------------------------------------------------------------------------------- /modules/platform/storefront-build.help: -------------------------------------------------------------------------------- 1 | Builds the storefront 2 | -------------------------------------------------------------------------------- /modules/platform/storefront-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/storefront-build.sh -------------------------------------------------------------------------------- /modules/platform/storefront-init.help: -------------------------------------------------------------------------------- 1 | Installs required npm modules -------------------------------------------------------------------------------- /modules/platform/storefront-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/storefront-init.sh -------------------------------------------------------------------------------- /modules/platform/storefront-watch.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/storefront-watch.help -------------------------------------------------------------------------------- /modules/platform/storefront-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/storefront-watch.sh -------------------------------------------------------------------------------- /modules/platform/test.help: -------------------------------------------------------------------------------- 1 | Runs all unit tests -------------------------------------------------------------------------------- /modules/platform/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/test.sh -------------------------------------------------------------------------------- /modules/platform/update.help: -------------------------------------------------------------------------------- 1 | Updates Shopware 6 -------------------------------------------------------------------------------- /modules/platform/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/update.sh -------------------------------------------------------------------------------- /modules/platform/worker-logs.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/worker-logs.help -------------------------------------------------------------------------------- /modules/platform/worker-logs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd "${SHOPWARE_FOLDER}" || exit 1 4 | 5 | tail -f var/log/worker*.log -------------------------------------------------------------------------------- /modules/platform/worker.help: -------------------------------------------------------------------------------- 1 | Run the worker -------------------------------------------------------------------------------- /modules/platform/worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/modules/platform/worker.sh -------------------------------------------------------------------------------- /phpmyadmin.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/phpmyadmin.env -------------------------------------------------------------------------------- /swdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/swdc -------------------------------------------------------------------------------- /swdc-inside: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shyim/shopware-docker/HEAD/swdc-inside --------------------------------------------------------------------------------