Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shopware5/swagmediaazure
https://github.com/shopware5/swagmediaazure
azure microsoft shopware shopware-plugin
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shopware5/swagmediaazure
- Owner: shopware5
- License: mit
- Created: 2016-11-15T13:24:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-22T13:10:14.000Z (over 6 years ago)
- Last Synced: 2024-05-18T17:54:45.679Z (7 months ago)
- Topics: azure, microsoft, shopware, shopware-plugin
- Language: PHP
- Size: 11.7 KB
- Stars: 2
- Watchers: 17
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Adapter for Shopware
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
The Azure adapter allows you to manage your media files in shopware on Azure Blob Storage.
## Building a package
Just run `./build.sh`.
## Install
Download the plugin from the release page and enable it in shopware.
## Usage
Update your `config.php` in your root directory and fill in your own values
```php
'cdn' => [
'backend' => 'azure',
'adapters' => [
'azure' => [
'type' => 'azure',
'mediaUrl' => 'https://example.blob.core.windows.net/media/',
'accountName' => 'youraccount',
'apiKey' => 'yourapikey',
'containerName' => 'media'
]
]
],
```## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.