Andy Blum
Andy Blum
I'm still unable to reproduce this - perhaps we should go over this one together with @Gopi916, @kennylam?
Backdrop reports 13% of their reporting sites using LiteSpeed https://backdropcms.org/project/backdrop/telemetry
+1 for a node-proxy type. I did a custom nginx conf file for a project recently that ran multiple services at once and fed a domain to each. Any solution...
@MannyFay "php" is the default fallback for DDEV project types, it means that there's no special CMS-based customizations happening. Node js is already installed in the `web` container and its...
Your `.ddev/config.yml` should look something like this: ```yml name: my_project type: php docroot: "" php_version: "8.1" webserver_type: nginx-fpm xdebug_enabled: false additional_hostnames: - api.my_project additional_fqdns: [] database: type: mysql version: "5.7"...
Commenting to hopefully breathe some life back into this feature request.
Additional note: you need to make sure to add `drush_version: 10` to your pantheon.yml file so drush is compatible with Drupal 9
This may not be possible. The type definitions that are currently used come directly from the function definition. Some add parameter types to the docblock, but others do not. For...
Seems [our scraper](https://github.com/andy-blum/drupal-smart-snippets/blob/main/src/getElementFiles.js#L5-L8) is not scanning the directory where the [entity_autocomplete element](https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php?ref_type=heads) is defined: ```js export async function getElementFiles(version) { return new Promise((res) => { find.file(`tmp/drupal-${version}/core/lib/Drupal/Core/Render/Element/`, (file) => { const...