An open API service indexing awesome lists of open source software.

https://github.com/ddev/test-shopware6

Used by automated tests to test shopware6 installation
https://github.com/ddev/test-shopware6

Last synced: 19 days ago
JSON representation

Used by automated tests to test shopware6 installation

Awesome Lists containing this project

README

          

# test-shopware6
Used by automated tests to test shopware6 installation

This repo was created with a `composer create` using the techniques at https://developer.shopware.com/docs/guides/installation/template.html and https://ddev.readthedocs.io/en/latest/users/quickstart/#shopware

`ddev config --name=testpkgshopware6 --project-type=shopware6 --docroot=public --create-docroot`

Demo data was installed with the Admin Settings->System->First Run Wizard.

Source code tarball was then created with
```
tar -czf .tarballs/shopware6_code.tgz --exclude=public/media --exclude=.tarballs --exclude=.ddev --exclude=.git --exclude=.env.local --exclude=var .
```

Database db tarball (not db.sql.gz) was created with
```
ddev export-db --gzip=false --file=.tarballs/db.sql && tar -czf .tarballs/shopware6_db.sql.tar.gz -C .tarballs db.sql
```

Files tarball was created with
```
cd public/media && tar -czf ../../.tarballs/shopware6_files.tgz .
```