How to migrate remote postgres db into my local django project?

I am creating a Django project where I have to use existing database data. The existing database is Postgres and it is hosted on Aws. My goal is to copy them from Aws to my local Postgres DB and use in my project.

Thanks

You can dump the database from AWS and import locally from tools like Mysql workbench

Back to Top