Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

strapi, how to migration contents

Tags:

strapi

I'm looking to use Strapi for a client of mine and I was wondering if there were best practices to migrate content from one environment, for example staging to production? My client has a lot of content, so recreating all the content on each environment is not viable.

Thanks a lot !

like image 704
Francois Desrosiers Avatar asked Oct 17 '22 20:10

Francois Desrosiers


1 Answers

For now, the only raw solution is to dump your database ...

I think that the best option is to create a module that let you import/export content.

But keep in mind that migrate content between environment is never the best option. Your client probably want to see only the final state, but you probably want test content that use every spec' of your app.

like image 98
storm1er Avatar answered Oct 21 '22 03:10

storm1er