Skip to content

Commit

Permalink
Added more FAQs content.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Aug 15, 2024
1 parent c8225c2 commit 15ac2f1
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Provided that your stack is already running:

1. Switch to your branch
2. `composer install`
3. `ahoy site-install`
3. `ahoy provision`

Note that you do not need to rebuild the full stack using `ahoy build` every
time.
Expand All @@ -88,6 +88,12 @@ ahoy drush sql-drop -y;
ahoy drush sql-cli < .data/db.sql
```

But better:

```bash
DREVOPS_PROVISION_POST_OPERATIONS_SKIP=1 ahoy provision
```

## How to add Drupal modules

```bash
Expand All @@ -114,3 +120,10 @@ composer require drupal/module_name
```bash
composer update --lock`
```

## Behat tests with `@javascript` tag sometimes get stuck

Behat tests with `@javascript` tag sometimes get stuck for about 10min then fail.
The Chrome container randomly get stuck for an unknown reason.

Restart the Chrome container: `docker compose restart chrome`

1 comment on commit 15ac2f1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.