diff --git a/README.md b/README.md index 90a1084..3859840 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Acquia Site factory local import -A small utility to import databases for ACSF for local setup. +A small utility to import ACSF databases for local setup. ## About Download all the backups from a particular day. You can either download them one by one or rsync all of the once filtering based the date. Acquia adds a suffix to backup like 2017-03-21. @@ -8,14 +8,16 @@ Download all the backups from a particular day. You can either download them one Create a mapping file, lets call is config.json - with name and id tuples. The name is the name of local DB and ID is the ACSF DB name. You can see the this ID is part of backup you have downloaded from the cloud. ``` - { - "name": "sitefactory_site1", - "id": "testsub01ldb100001" - }, - { - "name": "sitefactory_site2", - "id": "testsub01ldb100002" - } + [ + { + "name": "sitefactory_site1", + "id": "testsub01ldb100001" + }, + { + "name": "sitefactory_site2", + "id": "testsub01ldb100002" + } + ] ``` ## Usage @@ -33,7 +35,7 @@ Create a mapping file, lets call is config.json - with name and id tuples. The n ## Import Databases Import all databases. You will have to create target databases manually. ``` -./acsfdbimport -source-dir=some/dir -config-file=some/file/config.json +./acsfimport -source-dir=some/dir -config-file=some/file/config.json ``` ## TODO * Add better error handling and messages.