Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.3.0 #38

Merged
merged 6 commits into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .ahoy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ commands:
govcms-deploy:
usage: Runs deployment commands (e.g. config import, updb, cr, set up file_stage_proxy).
cmd: |
docker-compose exec -T cli mkdir -p /app/web/sites/default/files/private/tmp && \
docker-compose exec -T cli /app/vendor/bin/govcms-db-update && \
docker-compose exec -T cli /app/vendor/bin/govcms-config-import && \
docker-compose exec -T cli /app/vendor/bin/govcms-cache-rebuild && \
Expand Down Expand Up @@ -72,7 +73,7 @@ commands:
login:
usage: Login to a website.
cmd: docker-compose exec -T cli drush uli "$@"

unloop:
usage: Fix local redirect loop
cmd: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ audit-site

# Location of ship-shape XML result files.
.ship-shape

# Local development tools.
docker-compose.override.yml
24 changes: 24 additions & 0 deletions composer.9.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,30 @@
"type": "vcs",
"url": "git@github.com:govcms/govcms.git",
"no-api": true
},
{
"type": "package",
"package": {
"name": "harvesthq/chosen",
"version": "v1.8.7",
"type": "drupal-library",
"dist": {
"type": "zip",
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip"
}
}
},
{
"type": "package",
"package": {
"name": "dropzone/dropzone",
"version": "v5.7.2",
"type": "drupal-library",
"dist": {
"type": "zip",
"url": "https://github.com/dropzone/dropzone/archive/refs/tags/v5.7.2.zip"
}
}
}
],
"require": {
Expand Down