Skip to content

Commit

Permalink
Fixed missing FE compilation step during ahoy build.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Aug 16, 2024
1 parent a37e960 commit 0cfcfde
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .ahoy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ commands:
build:
usage: Build or rebuild the project.
cmd: |
ahoy reset
ahoy up --build --force-recreate
ahoy composer install --prefer-dist
ahoy fei
ahoy provision
DREVOPS_SHOW_LOGIN=1 ahoy info
ahoy reset # Reset the project.
ahoy up --build --force-recreate # Start the stack.
ahoy composer install # Install Composer dependencies.
ahoy fei # Install front-end dependencies.
ahoy fe # Build front-end assets.
ahoy provision # Provision the site.
DREVOPS_SHOW_LOGIN=1 ahoy info # Show information and a login link.
info:
usage: Show information about this project.
Expand Down

1 comment on commit 0cfcfde

@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.