Using in GovCMS SaaS
Last updated
Was this helpful?
Last updated
Was this helpful?
See section
Clone the GitLab project locally.
Create a new branch develop
from master
.
Uncomment MARIADB_DATA_IMAGE
line in .env
file.
Add the following file exclusions to .gitignore
:
You can lookup username by logging into production site or by running:
Now, if you run ahoy login
you should be able to login to your local version of the site as an admin user.
Run ahoy drush cex
and commit configuration changes.
Push to remote and wait for deployment to complete.
Upon successful deploy, create a new Merge Request against master
branch . This will get the active configuration into the main branch.
When merged, update your local branch against the latest master
.
At this point, you should have a GovCMS project running in master
environment in GovCMS SaaS with the default theme.
Since GovCMS SaaS does not allow to install themes via Composer, CivicTheme source must be installed as a custom theme.
Using an automated script to discover required modules from theme dependencies (Drupal does not support this OOTB):
Do not skip this step
CivicTheme MUST be enabled before your custom theme is enabled
CivicTheme GovCMS helper module civictheme_govcms
serves the purpose to remove unnecessary entities and configuration that ships with GovCMS.
Install it locally to automatically remove the configuration from DB to later have it exported without GovCMS entities.
Run in CLI container (ahoy cli
):
Export updated configuration
Run in CLI container (ahoy cli
):
This should result in 2 directories:
Run on your host:
Check that directory themes/<SUBTHEME_MACHINE_NAME>/dist
was created.
Navigate to your site and assert that default styling was applied.
Modify .gitignore
file in your new theme and remove the following lines\
Commit built assets.
CivicTheme comes with pre-set Block Content blocks configuration. Since Drupal does not support running install hooks in themes, a custom content provisioning script has to be used.
The provisioning needs to be run twice:
Locally - to capture created configuration for config entities (blocks, menus etc.)
In production - to populate the configuration with the default content. This step will be covered in the “Deployment” section below.
Run locally:
Login to the local instance of your site.
Navigate to /admin/appearance/settings/<SUBTHEME_MACHINE_NAME>
\
Press "Provision content" button.
Navigate to the homepage and observe that all blocks and menus are present.
Export config for created entities:
Commit and push to remote.
Wait for deployment to finish and login to the Drupal instance.
Navigate to /admin/appearance/settings/<SUBTHEME_MACHINE_NAME>
.
Press "Provision content" button.
Navigate to the homepage and observe that all blocks and menus are present.
Merge feature branch to master
(or develop
and then to master
).
Commit and push to remote.
Wait for deployment to finish and login to the Drupal instance.
Navigate to /admin/appearance/settings/<SUBTHEME_MACHINE_NAME>
.
Press "Provision content" button.
Navigate to the homepage and observe that all blocks and menus are present.
Only run this step once everything is working and looking as expected.
Commit and push to remote.
Replace sub-theme logos in repository themes/<SUBTHEME_MACHINE_NAME>/assets/logos
with site-specific versions.
Update sub-theme screenshot.png
with something more appropriate (optional).
npm run build
and commit changes.
Enable Role Delegation
module and allow Site Administrator
to delegate both GovCMS and CivicTheme roles. Ensure that CivicTheme roles have the same permissions with their GovCMS counterparts.
Login to the site and re-assign existing users from GovCMS roles to relevant CivicTheme roles.
Remove GovCMS admin roles and re-export configuration.
If the above did not work OR hasn't been updated nightly - download a raw database file from from the “Backups” tab and import with ahoy mysql-import .data/db.sql
and extract into themes/custom
directory, rename the directory to civictheme
.
After deployment and provisioning your remote feature environment should look like a without homepage content.
After deployment and provisioning your remote (pre-)production environment should look like a without homepage content
with your sub-theme.
See