Skip to content

Commit

Permalink
Merge branch 'main' into Q3-initiative
Browse files Browse the repository at this point in the history
  • Loading branch information
linawolf authored Nov 6, 2024
2 parents 8684715 + f829c63 commit adfb4ba
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ php_version: "8.2"
webserver_type: nginx-fpm
router_http_port: "80"
router_https_port: "443"
xdebug_enabled: true
additional_hostnames: [ ]
additional_fqdns: [ ]
mariadb_version: "10.3"
mysql_version: ""
xdebug_enabled: trueent: [ ]
additional_hostnames: []
additional_fqdns: []
use_dns_when_possible: true
composer_version: ""
web_environment: [ ]
web_environment: []
omit_containers: [db]

# This config.yaml was created with ddev version v1.17.0
# webimage: drud/ddev-webserver:v1.17.0
Expand Down
11 changes: 11 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,14 @@ It wil check if the processed directory is a ``/c/typo3/cms-core/'`` and if the
The ``ImportManualHTMLService::importSectionsFromManual()`` method will check if the file contains.\
``<meta name="x-typo3-indexer" content="noindex">`` meta tag. If such tag exists inside the file, such file will be ignored.

Run a Kibana instance
^^^^^^^^^^^^^^^^^^^^^

To get a local Kibana connected to your local Elasticsearch instance, you can run this Docker command:

.. code-block:: bash
docker run -it --rm --name kib01 --net ddev_default -p 5601:5601 -e ELASTICSEARCH_HOSTS='["http://elasticsearch:9200/"]' docker.elastic.co/kibana/kibana:7.17.1
Then, open http://localhost:5601/app/dev_tools#/console to get the Dev Tools.


0 comments on commit adfb4ba

Please sign in to comment.