Skip to content

Commit c12eef4

Browse files
authored
Merge pull request #356 from ByteInternet/add-sample-hypernodedeploy-for-shopware-6
Add sample hypernodedeploy for shopware 6
2 parents 49d0920 + a097d53 commit c12eef4

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

docs/hypernode-deploy/applications/config-for-magento-2.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ return $configuration;
1717

1818
By using the Magento2 ApplicationTemplate, a bunch of default configuration gets set in Hypernode Deploy, and should work out-of-the-box for most magento 2 stores.
1919

20-
These are the steps that will be executed by running your deployment:
21-
2220
## Advanced
2321

2422
However, for advanced configurations you can override most steps and variables set my Hypernode Deploy:
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
11
# Config for Shopware 6
2+
3+
This is a sample configuration that suffices for most Shopware 6 installations:
4+
5+
```php
6+
<?php
7+
8+
namespace Hypernode\DeployConfiguration;
9+
10+
$configuration = new ApplicationTemplate\Shopware6();
11+
12+
$productionStage = $configuration->addStage('production', 'shopware6.komkommer.store');
13+
$productionStage->addServer('appname.hypernode.io');
14+
15+
return $configuration;
16+
```
17+
18+
By using the Shopware6 ApplicationTemplate, a bunch of default configuration gets set in Hypernode Deploy, and should work out-of-the-box for most shopware 6 stores.

0 commit comments

Comments
 (0)