https://github.com/acquia/drs-acsf
Provide acquia-recommended acsf drush commands.
https://github.com/acquia/drs-acsf
Last synced: 11 days ago
JSON representation
Provide acquia-recommended acsf drush commands.
- Host: GitHub
- URL: https://github.com/acquia/drs-acsf
- Owner: acquia
- License: gpl-2.0
- Created: 2024-04-09T10:16:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-03T06:08:12.000Z (3 months ago)
- Last Synced: 2025-04-12T03:06:46.380Z (14 days ago)
- Language: PHP
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 8
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About
This plugin is specially designed for the automated generation of settings files needed for running code in an ACSF environment.```
composer require acquia/drs-acsf
```### Commands
The acsf-init Drush command (provided as part of the Site Factory Connector module) prepares a custom Drupal distribution for development and deployment on Site Factory. The command appends information to your website’s sites/default/settings.php file, while also creating any necessary directories, identifying database credentials, creating a sites.php file, and copying files required by Site Factory.```
./vendor/bin/drush drs:acsf:init:all
```
Above command will initialize support for Acquia Cloud Site Factory by performing the following tasks:
- Executing the `acsf-init` command, provided by the drupal/acsf module.
- Adding default factory-hooks to your application.```
./vendor/bin/drush drs:acsf:init:drush
```
- Executing initialization command provided acsf module```
./vendor/bin/drush validate:acsf
```
Above command will validate all required settings are in place.