Drupal
  • Managing Successful Drupal Based Projects
  • Process
    • Team Roles and Responsibilities
    • Ceremonies
    • User Stories Best Practices
    • Glossary
  • Development Resources
    • Coding Standards
    • Setup Local Development Enviornment
    • Content Modeling
    • Git, Commit Messages & Pull Request Guidelines
    • Useful Terminal Commands
    • Package management - Composer, BLT and CI
    • Behat
      • How Behat is used in Acquia Projects?
    • Maintaining your platform/patches
  • JIRA Ticket Templates
    • Ticket Template
    • Composer Updates
    • Redirect endpoints that should not be public
    • Bug Template
    • Sync local with latest upstream code and database sprint X
    • Drupal Enablement
  • ACE & ACSF
    • Deploying to Acquia Cloud
    • ACSF - First Pull Request
    • ACSF & Drupal and Your Platform
Powered by GitBook
On this page
  • Step One: Merge code, create a release tag and sync loal code with github
  • Step Two: Add Acquia's Cloud remote url to your project.yml
  • Step Three: Create a build artifact, tag and push to remotes

Was this helpful?

  1. ACE & ACSF

Deploying to Acquia Cloud

PreviousACE & ACSFNextACSF - First Pull Request

Last updated 6 years ago

Was this helpful?

Step One: Merge code, create a release tag and sync loal code with github

Step Two: Add Acquia's Cloud remote url to your project.yml

nano /blt/project.yml

Find and add Acquia's cloud remote url. For example below is an excerpt of a project.yml file:

git:
  default_branch: master
  remotes:
      - 'drupal8@svn-XXXX.prod.hosting.acquia.com:drupal8.git'

Step Three: Create a build artifact, tag and push to remotes

blt deploy --commit-msg "Creating release 1.0.0." --tag "1.0.0"

blt deploy creates a build artifact with a commit message and a defined tag. The tag should match the sprint release.

Read more on . This step creates a /deploy/docroot directory that removes extraneous files not needed for production.

Resources & References

BLT's deploy docs
https://docs.acquia.com/site-factory/tiers/paas/deploy
http://blt.readthedocs.io/en/latest/readme/deploy/