Hello,

How to deploy the CMS into a Azure App, using a postgresql SaaS? Where can i read about this? I do not want to use marketplace options for this. 

Thanks

Comments

jaypan’s picture

  1. Upload codebase
  2. Install system from scratch, whether through admin UI, or drush
  3. Import a DB into the PROD DB that has been exported from your development environment

Or, if PROD already exists and is installed, and you don't want to overwrite it:

  1. Export your config from the development environment
  2. Import the exported config into your PROD environment

This assumes that one of the systems was cloned from the other, so that they have the same UUID.

Contact me to contract me for D7 -> D10/11 migrations.

kaspanoombro’s picture

Is there any documentation about this? Or everything is navigation with "blinded eyes"?
Thanks

jaypan’s picture

For this one, it's not really a Drupal specific issue, as much as an infrastructure issue around Drupal. Drupal is the code base, and you need to deploy your code base. It's the same process for any site that uses a database and codebase, which is to deploy your codebase, and then import a database from the development environment. I added some additional steps above that will make it easier with Drupal, as installing with the Drupal UI first will ensure all the DB connection settings are properly configured.

Drupal codebases are almost always managed with Git (every single codebase I work with is), so what you probably want to look at is how to set up and manage a codebase with Git, then how to deploy a Git based project from local computer to remove server.

Contact me to contract me for D7 -> D10/11 migrations.