-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
## Description: Initialize Matomo environment for development | ||
## Usage: matomo:init:dev | ||
## Example: ddev matomo:init:dev | ||
|
||
echo "Run npm install ..." | ||
ddev npm install | ||
|
||
echo "Enable development mode and disable assets merging ..." | ||
ddev matomo:console development:enable | ||
ddev matomo:console config:set Development.disable_merged_assets=1 | ||
|
||
echo "Done: Matomo dev setup initialisation finished." | ||
echo "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters