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
- Host: GitHub
- URL: https://github.com/ddev/test-shopware6
- Owner: ddev
- Created: 2023-11-01T21:04:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-24T21:28:21.000Z (over 2 years ago)
- Last Synced: 2025-01-14T15:17:22.796Z (over 1 year ago)
- Language: Shell
- Size: 64.9 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .
```