
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
Aquifer is a command line interface that makes it easy to scaffold, build, test, and deploy your Drupal websites. It provides a default set of tools that allow you to develop, and build Drupal sites using the Drush-make workflow. In addition, Aquifer ships with an extensions system that allows you to add additional tools to your project.
Aquifer Version | Node Version |
---|---|
1.0.0 | >= 4.5.0 |
Aquifer is an npm module, installing it is relatively painless:
npm install -g aquifer
Aquifer should now be installed!
Aquifer has some helpful command line documentation. Run aquifer --help
to get a list of the commands that are availble to you at any given time. If you need documentation for a specific command, run aquifer commandName --help
.
If you need more in-depth documentation, checkout these wiki documents:
You can easily get started using Aquifer with just a couple commands.
To create an Aquifer-based Drupal project, run the following command:
aquifer create mySiteName
By default, a Drupal 8 build is implied. To create a Drupal 7 project, run the following command:
aquifer create mySiteName -d 7
The mySiteName
directory will now contain an Aquifer project with an number of files/folders. For information on what each file and folder is, checkout this document in the wiki.
Aquifer projects build into a Drupal site root in the build
directory. To build the Drupal site, run:
aquifer build
This command will use Drush make and other tools to construct a Drupal site root, which will now be located in the build
folder, or whatever folder is specified in aquifer.json
in the build
object's directory
property.
Using Composer (Drupal 8 support only)
Edit the aquifer.json
file in your project root and change the build
object to look like this:
"build": {
"method": "composer",
"directory": "build",
"makeFile": "composer.json"
}
Now aquifer build
will use Composer to build the site instead of Drush make.
Note that if you wnat to change the build.directory
property in aquifer.json
to something else, you will also need to edit composer.json
and alter any paths there to incorporate your new build directory value.
To add contrib modules to your project, simply edit the drupal.make.yml
file and add your contrib modules there. To learn more about Drush Make, see http://www.drush.org/en/master/make/
Aquifer makes optional use of Drush make lock files. If you make a change to drupal.make.yml
after you've already built your site, you'll need to add the --refresh-lock
flag to the aquifer build
command so that the lock file is recalculated when your site root is constructed.
For more details, visit the documentation page for the build system.
Custom themes should be added to the themes
folder within the Aquifer root, and likewise custom modules should be added to the modules/custom
folder, or modules/features
folder if the custom module is a feature. When you build the site, Aquifer will symlink those files into your site root.
Several extensions for Aquifer already exist, and you may find them useful:
Use the project, fork it, and submit PRs. We are responsive and will review them as soon as possible!
These humanoids (in alphabetical order) are responsible for creating and maintaining Aquifer:
Aquifer is a trademark of Four Kitchens, LLC. You are free to use the logo to promote the Aquifer product so long as you do not modify it in any way.
Drupal is a registered trademark of Dries Buytaert.
FAQs
Drupal build, test, and deployment CLI.
The npm package aquifer receives a total of 0 weekly downloads. As such, aquifer popularity was classified as not popular.
We found that aquifer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.