قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* DDEV project base for Matomo * Ensure DDEV files are not part of a release * Add console command wrapper * Fix typos in main readme * Mix and match DDEV+Matomo xhprof setups * Add README for DDEV environment * Add warning not to use to host prod instances --------- Co-authored-by: Ayke Halder <rr-it@users.noreply.github.com> Co-authored-by: Marc Neudert <marc@innocraft.com>
17 خطوط
421 B
Bash
Executable File
17 خطوط
421 B
Bash
Executable File
#!/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 ""
|
|
|