DEV Community

Discussion on: How do you plan your database in development, before migrating to production?

Collapse
 
mxglt profile image
Maxime Guilbert • Edited
  1. Like Ron, I use a Docker image. It's the easiest way to keep the same config in all your environment.

  2. I only do snapshots to keep a version of my database in case of crash, and store it in a S3 bucket in AWS.

  3. About migrate your development DB to prod, it will depend on your case and your project. Generally, I only migrate schemas manually.

I hope it will help you