-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
115 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[![tests](https://github.com/Metadrop/ddev-aljibe/actions/workflows/tests.yml/badge.svg)](https://github.com/Metadrop/ddev-aljibe/actions/workflows/tests.yml) | ||
[![tests](https://github.com/Metadrop/ddev-aljibe/actions/workflows/tests.yml/badge.svg)](https://github.com/Metadrop/ddev-aljibe/actions/workflows/tests.yml) ![project is maintained](https://img.shields.io/maintenance/yes/2024.svg) | ||
![GitHub Release](https://img.shields.io/github/v/release/Metadrop/ddev-aljibe) | ||
|
||
|
||
|
@@ -8,9 +8,6 @@ Aljibe (ddev-aljibe) is an add-on for DDEV for Drupal projects that adds several | |
|
||
Aljibe sits on top of DDEV and adds some containers, configuration and commands to make the development of Drupal projects faster and easier. | ||
|
||
> [!WARNING] | ||
> Aljibe is still in Alpha stage! | ||
## Included tools | ||
|
||
- Behat: BDD and Acceptance testig | ||
|
@@ -43,8 +40,32 @@ Launch Aljibe Assistant. This will guide you throught the basic Drupal site inst | |
|
||
You are ready! you will have a new Drupal project based on Aljibe ready for development. | ||
|
||
|
||
## Other Aljibe commands | ||
## Migrate legacy projects to DDEV Aljibe | ||
|
||
To transform a legacy project to Ddev Aljibe, the following steps must be followed, always taking into account the particularities of each project: | ||
|
||
1. Clone the project without install it and remove all docker related files | ||
2. Run basic ddev-config: | ||
- `ddev config --auto` | ||
3. Install Aljibe: | ||
- `ddev get metadrop/ddev-aljibe` | ||
4. Run again ddev config, but this time go throught the assistant to set project type to Drupal, docroot folder, etc... | ||
5. Edit .ddev/config.yml to fine tune the environment. | ||
6. Edit .ddev/aljibe.yml to set deault site name (the folder inside sites) and all themes to be transpiled | ||
7. update .gitignore to look like [this](https://github.com/Metadrop/ddev-aljibe/blob/main/aljibe-kickstart/.gitignore). | ||
|
||
If you come from a boilerplate project: | ||
|
||
- Remove from settings.local.php database, trusted host patterns and others that can conflict with settings.ddev.php. | ||
- Adapt the drush alias to the new url. | ||
- Review tests folder structure as in aljibe, all tests (behat.yml included) are inside tests folder and replace http://apache or http://nginx by http://web. | ||
- Config also the nodejs_version in .ddev/config.yml with the same as the old project. Old version on .env file, variable **“NODE_TAG”** | ||
- Adapt grumphp changing EXEC_GRUMPHP_COMMAND on grumphp.yml to “ddev exec” | ||
- Launch ddev setup: | ||
- If monosite: `ddev setup` | ||
- If multisite:`ddev setup —all` or `ddev setup --sites=site1` | ||
|
||
## Aljibe commands | ||
|
||
#### Project setup | ||
Once the project has been created and uploaded to version control, anyone else working with it can clone it and with the following command you can have the project ready to work with. | ||
|
@@ -82,6 +103,10 @@ If you use ddev-solr addon and need to sync the solr config from the server, you | |
|
||
ddev solr-sync | ||
|
||
#### Power off ddev | ||
|
||
ddev poweroff | ||
|
||
## Troubleshooting | ||
|
||
### Https not working | ||
|
@@ -117,3 +142,53 @@ xdebug.profiler_output_name=trace.%c%p%r%u.out | |
``` | ||
|
||
Review the php info (/admin/reports/status/php) page to review that the xdebug variables are setup properly after run ddev xdebug on, restart the project if necessary. | ||
|
||
## How to develop Aljibe | ||
|
||
To work on the development of Aljibe, if we do a lot of tests we can reach the limit of github, so it is convenient to have everything in local. For this we should have a structure like this: | ||
|
||
- tests-aljibe <- Here we test the creation of projects with the steps explained below. This folder can have any name you want. | ||
- ddev-addons <- Here are all the addons from Metadrop: | ||
- ddev-aljibe | ||
- ddev-aljibe-assistant | ||
- ddev-backstopjs | ||
- ddev-lighthouse | ||
- ddev-mkdocs | ||
- ddev-pa11y | ||
- ddev-selenium | ||
|
||
To have this folder, we can do the following from the folder where we save the projects: | ||
|
||
1. Create the folder and got to that folder: | ||
``` | ||
mkdir ddev-addons && cd ddev-addons | ||
``` | ||
|
||
2. Clone the projects: | ||
``` | ||
git clone [email protected]:metadrop-group/ddev-aljibe.git | ||
git clone [email protected]:metadrop-group/ddev-aljibe-assistant.git | ||
git clone [email protected]:Metadrop/ddev-backstopjs.git | ||
git clone [email protected]:Metadrop/ddev-lighthouse.git | ||
git clone [email protected]:Metadrop/ddev-mkdocs.git | ||
git clone [email protected]:Metadrop/ddev-pa11y.git | ||
git clone [email protected]:Metadrop/ddev-selenium.git | ||
``` | ||
#### Installing Aljibe: | ||
|
||
To launch ddev-aljibe, we must go to the test-aljibe folder, or to the folder where we want to install it. Remember that as long as we don't have Aljibe public, this folder must be at the same level as the ‘ddev-addons’ folder. Inside this folder, just launch these 3 commands: | ||
|
||
1. Configure a basic ddev project: | ||
``` | ||
ddev config --auto | ||
``` | ||
2. Install ddev-aljibe from local: | ||
``` | ||
ddev get ../ddev-addons/ddev-aljibe | ||
``` | ||
3. Launch the Aljibe assistant: | ||
``` | ||
ddev aljibe-assistant | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters