EPC to EPR Migration
The first step to migrate e-PlanCheck® (ePC) to e-PlanREVIEW® (EPR) is to copy ePC database and all EPC project PDF files to EPR S3 bucket
Step-by-step instructions
Export ePC MS SQL database put it into the <EPC>/uploads folder
Copy ePC PDF files from the uploads folder to an EPR S3 bucket
Download and install the AWS CLI command line tool : https://docs.aws.amazon.com/cli/latest/userguide/install-windows.html#install-msi-on-windows
create a Windows batch script to perform the S3 upload
@echo off SET AWS_ACCESS_KEY_ID=<AWS_ACCESS_KEY_ID> SET AWS_SECRET_ACCESS_KEY=<AWS_SECRET_ACCESS_KEY> SET AWS_DEFAULT_REGION=us-west-2 aws s3 sync ./ s3://BUCKET-NAME/
Finally, run the batch script to start copying files over