Important
End of Support notice! Acquia has stopped support for Dev Desktop on June 30, 2021. Acquia recommends that you transition to Acquia Cloud IDE for a managed development environment on Cloud Platform. For more information, see Migrating from Dev Desktop to Cloud IDE.
Acquia also provides limited integration with open source alternatives to Cloud IDE for local development. For more information, see Local development solutions.
When you clone a website or pull a database from Cloud Platform to Acquia Dev Desktop, you can optionally sanitize (or scrub) the database of user emails and passwords. This is a best practice for security, so that your local website never includes real user emails (to prevent developers from accidentally emailing users) and passwords.
Selecting the Sanitize database checkbox is the equivalent of using
the --sanitize
option with the drush sql-sync
command. By default, it
changes all email addresses to user+%uid@localhost
and changes all
passwords to password
. You can customize these operations by editing your
~/.drush/drushrc.php
file.
If you have installed contributed modules that use the
hook_drush_sql_sync_sanitize
function, selecting Sanitize database
in
Acquia Dev Desktop will also execute any sanitizations provided in those
contributed modules.