phenaproxima / starshot-prototype

Prototype of a new kind of Drupal, based on recipes and loaded up with contrib's best modules and themes. Not a fork or a distribution.
https://drupal.org/starshot
115 stars 46 forks source link

Fix errors on Status report #34

Open TravisCarden opened 5 months ago

TravisCarden commented 5 months ago

There are a number of errors and warnings on the Status report on a fresh installation. We should fix as many as we can.

phenaproxima commented 4 months ago
  1. The entity/field definitions being out of date is a definite bug and we need to fix that. I'm guessing we might be missing some configuration in our recipes.
  2. The trusted host settings are probably something we should be setting up for local development, like automatically supplying a settings.local.php with trusted_host_patterns including 127.0.01 and localhost (along with the Lando and MAMP versions mentioned in the d.o documentation). We also probably want to update our CI to ensure that we have a trusted host pattern set up for Tugboat.
  3. The Webform problem requires us to solve the "how do you get JavaScript libraries into a Drupal site?" question, which is a long-standing pain point. We might want to consult @lauriii for ideas there; one possibility is to take advantage of npm and supply the libraries in a package.json instead of using hacks like Asset Packagist.
TravisCarden commented 4 months ago