Skip to content

Commit

Permalink
docs: Add Pimcore quickstart, fixes #5843 (#5909) [skip ci]
Browse files Browse the repository at this point in the history
Co-authored-by: Ralf Koller <1665422+rpkoller@users.noreply.github.com>
  • Loading branch information
rfay and rpkoller committed Mar 1, 2024
1 parent 61f9e4e commit 9e31187
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .spellcheckwordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ PHIVE
PHP
PHPUnit
PID
Pimcore
PWD
PartOf
PathMaps
Expand Down
21 changes: 21 additions & 0 deletions docs/content/users/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,27 @@ Visit the [Moodle Admin Quick Guide](https://docs.moodle.org/400/en/Admin_quick_
!!!tip
Moodle relies on a periodic cron job—don’t forget to set that up! See [ddev/ddev-cron](https://github.com/ddev/ddev-cron).

## Pimcore

Using the [Pimcore skeleton](https://github.com/pimcore/skeleton) repository:

``` bash
mkdir my-pimcore && cd my-pimcore
ddev config --docroot=public


ddev start
ddev composer create pimcore/skeleton
ddev exec pimcore-install --mysql-username=db --mysql-password=db --mysql-host-socket=db --mysql-database=db --admin-password=admin --admin-username=admin --no-interaction
echo "web_extra_daemons:
- name: consumer
command: 'while true; do /var/www/html/bin/console messenger:consume pimcore_core pimcore_maintenance pimcore_scheduled_tasks pimcore_image_optimize pimcore_asset_update --memory-limit=250M --time-limit=3600; done'
directory: /var/www/html" >.ddev/config.pimcore.yaml

ddev start
ddev launch /admin
```

## Python/Flask (Experimental)

```bash
Expand Down

0 comments on commit 9e31187

Please sign in to comment.