diff --git a/creating-new-drutopia-site.md b/creating-new-drutopia-site.md index 8287a40..3f53c4d 100644 --- a/creating-new-drutopia-site.md +++ b/creating-new-drutopia-site.md @@ -97,9 +97,18 @@ Drutopia releases will expect the configuration in `$project_root/config/sync`. $settings['config_sync_directory'] = '../config/sync'; ``` -Once you also have a working Drush installation and a live instance, you can then acuire and export the initial configuration with: +Once you also have a working Drush installation and a live instance, you can then aquire and export the initial configuration with: ``` -ddev exec drush sql-sync @live @self -ddev exec drush cex -y +ddev . drush sql-sync @live @self +ddev . drush -y cex +``` + +Similarly, you can get live data and files down to your local development environment any time with: + +``` +ddev . drush -y sql-dump > data/paranoia.sql +ddev . drush -y sql-drop +ddev . drush -y sql-sync @live @self +ddev . drush -y rsync @live:%files @self:%files ```