https://github.com/acquia/drupal-cms-project
https://github.com/acquia/drupal-cms-project
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/acquia/drupal-cms-project
- Owner: acquia
- License: gpl-2.0
- Created: 2025-01-07T15:36:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-20T03:54:05.000Z (about 1 month ago)
- Last Synced: 2025-03-28T15:51:51.763Z (29 days ago)
- Language: CSS
- Homepage:
- Size: 677 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Acquia Drupal CMS Project
Project template for building [Drupal CMS](https://drupal.org/drupal-cms) tailored for Acquia hosting.## Example workflow using [Acquia CLI](https://docs.acquia.com/acquia-cloud-platform/add-ons/acquia-cli/install)
1. Create project
```
composer create-project --stability=dev acquia/drupal-cms-project
```2. Initialize repo and commit
```
cd drupal-cms-project && git init && git add -A && git commit -m "initial build"
```3. Build artifact and push to cloud
```
/usr/local/bin/acli push:artifact --destination-git-urls= --destination-git-branch=artifact--dcms-scaffold --quiet
```4. Checkout the new branch on cloud
```
/usr/local/bin/acli app:task-wait "$(/usr/local/bin/acli api:environments:code-switch .dev artifact--dcms-scaffold)"
```5. Drop database on cloud if you have previously installed a site and want to see the Drupal CMS installer
```
/usr/local/bin/acli remote:drush @.dev sql:drop
```6. Visit your site!
## License
Copyright (C) 2025 Acquia, Inc.This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.