Reputation: 41
I cannot find anything properly documented on how to move Apostrophe CMS from one Server to another Server.
Any Step by Step guides?
Upvotes: 1
Views: 189
Reputation: 1370
There is not a specific guide for this as far as I'm aware. Assuming your new server is set up correctly, the steps would basically be:
mongodump
CLI command, mongoexport
, or some other way (e.g., a GUI)mongoimport
)rsync
or otherwise transfer the media uploads in public/uploads/attachments
Then you get the new server online and you should be pretty much good to go. There will be many steps in between for process monitoring and whatnot, but those are basic steps. Move the database, deploy the project code, and transfer the media. For deployment and server config the recommended tools are stagecoach
and mechanic
Upvotes: 2