Module Description
Development mode makes it easy to enable developer friendly settings on your Drupal site, so you don't have to constantly clear the cache and/or hard-reload your browser.

Do not enable on production sites!

Enable this module and it will:

* Disable twig caching.
* Turn on twig debug/template suggestions.
* Disable most Drupal caches.
* Disable JS and CSS aggregation.
* Disable browser level caching.
* Turn on verbose error logging.

Disable this module and it will:

* Restore your previous settings.

Install
Install with composer:

composer require --dev drupal/dev_mode Enable with drush:

drush en dev_mode
* Enable module (like above) to activate development mode on your Drupal site.
* Module will attempt to include settings.dev_mode.php in your settings.php, if it's writeable. If not, you will need to add in manually. See below for example.
* Check logs after install to insure all went well.

Settings file
Module will attempt to write to settings.php, but if not writeable, please add the following to the end of settings.php file:

/** * Development mode settings. */ if (file_exists($app_root . '/modules/contrib/dev_mode/settings.dev_mode.php')) { include $app_root . '/modules/contrib/dev_mode/settings.dev_mode.php'; } See more information about disabling caching here: https://www.drupal.org/node/2598914

Uninstall
Uninstall with drush:

drush pmu dev_mode
* Disable this module (like above) to de-activate development mode.
* Check logs after install to insure all went well.

Configuration

* No user configuration options are available. Once the module is installed its active.
* When the module is enabled, it remembers your performance and logging settings before changing them.
* When the module is disabled, it will restore your settings.

Project Usage
213
Creation Date
Changed Date
Security Covered
Covered By Security Advisory
Version Available
Production
Module Summary
This module aims to solve the issue of constantly clearing cache and hard-reloading browsers by enabling developer-friendly settings on Drupal sites in development mode.
Data Name
dev_mode

OPENAI CHATBOT

OPENAI CHATBOT

12:23:03
Generic Chatbot
Hi, I'm a Drupal module expert powered by OpenAI, answering your questions about the Drupal module ecosystem. How can I be helpful today? Please note that we will log your question.