This is the minimalist wrapper around the bulk of the KM Collaborative work done at https://github.com/United-Philanthropy-Forum/km-collaborative
This code should only need to be referenced when you spin up a new Forum site.
Building this project successfully requires a few things:
The ability to push code to github, specifically, this repo
Make sure you’ve added an SSH key to your profile on github, and that you are a collaborator or team member with Write permissions on the KM Collaborative repo.
This is working when you can visit the repo home page, and see a little pencil in the top-right corner of the README.md file. That means you can edit that file.
If you don't have access, one of the United-Philanthropy-Forum owners will need to invite you.
The ability to create a new repository in the United Philanthropy Forum namespace. You’ll know this is working when you can visit this url without error: https://github.com/organizations/United-Philanthropy-Forum/repositories/new
If you don't have access, one of the United-Philanthropy-Forum owners will need to invite you.
Access to Pantheon. You'll know this is working when you can go to Create a new site in Pantheon and be able to choose United Philanthropy Forum from the dropdown.
If you don't have access, one of the United Philanthropy Forum Administrators will need to invite you.
Access to the United Philanthropy Forum CircleCI instance. You'll know this is working when you can visit that url.
If you don't have access, you might need to authenticate Circle -- you can log in with Github.
Composer > 2.0.0 Globally available. You'll know this is working when you can type composer --version
into your console and see something like "Composer version 2.1.6 2021-08-19 17:11:08"
Terminus > 3.6. You'll know this is working when you can type terminus --version
into your console and see something like Terminus 3.6.0
. It's a good idea to update Terminus to the latest version before running this script, otherwise it may fail inexplicably.
The Pantheon Build tools. You'll know this is working when you can type terminus build:project:create -h
into your console and see information about the build:project:create command, like this:
Usage:
build:project:create [options] [--] <source> [<target>]
...
You have run the One time setup steps
Your local machine is running php 8.1. You'll know this is working when you can type php -v
into your console and see something like PHP 8.1.12 (cli)
Choose a new project name
To start a new project:
For example, to create a site with the project for the ThinkShout Foundation: Project name: thinkshout-foundation Pantheon Team: United Philanthropy Forum Github Org: United-Philanthropy-Forum
Be prepared for this command to take 30 minutes. That means making sure your computer doesn't go to sleep in that time. If you're experiencing timeouts, you might try adding a "ServerAliveInterval" to keep Pantheon connected to your machine during install.
You would run this command:
terminus build:project:create --team='United Philanthropy Forum' --org='United-Philanthropy-Forum' --visibility='private' united-philanthropy-forum/km-starter-kit thinkshout-foundation
The first time running this command, you will be asked to provide some API keys on Circle and Pantheon. Each step provides links and instructions on doing that. You will also be asked to set a User 1 password for the new site. (If the password request keeps repeating, the system is rejecting your password as insufficiently secure. Choose something more complex.)
This will create a new repository in the United Philanthropy Forum github repo, as well as a new Pantheon site:
https://github.com/United-Philanthropy-Forum/thinkshout-foundation
https://dev-thinkshout-foundation.pantheonsite.io
The Pantheon site should also have the km_collaborative profile installed.
We now have a site who's deployment process is tied to your personal Github account. We don't want this! Change this to the use the UPF CI bot account:
upf-ci-bot
(login info in the 1password vault for Forum)https://app.circleci.com/settings/project/github/United-Philanthropy-Forum/MYSITE/environment-variables
, delete these environment variables if present: GITHUB_EMAIL
GITHUB_TOKEN
TERMINUS_TOKEN
(they will now be provided by the org context)https://app.circleci.com/settings/project/github/United-Philanthropy-Forum/MYSITE/ssh
:
If the above process completes successfully, you'll have a github repo and a Pantheon repo tied together with CircleCI, all in the appropriate Organizations or accounts. On Pantheon, you'll have a basic site installed on "dev", but it won't look like much, and it won't have most of the KMC features yet. In order to get these, you'll need to work around Pantheon's memory limits. The best way to do this is to create a local copy of the site and clone down the Pantheon database. In your local environment, disable your PHP memory limits (or set them very high). Then, enable the "kmc_config_part2" module. Once you have done so, export your database and import it on Pantheon.
You may also want to enable some other kmc submodules, depending on your site requirements, like kmc_salesforce if you are integrating with a Salesforce instance using the KMC package. These can all be enabled directly on Pantheon once you have "kmc_config_part2" enabled -- that is the only module that needs excessive memory to install.
If the build:project:create
command fails on Pantheon when running composer create-project
with Fatal error: Allowed memory size ... exhausted
, then the base install of the distro has become too large (this happens regularly). When it fails this way, you will end up with a broken setup. The only way to fix this is to delete the Pantheon site and Github repo and start again. The most common error is on Drupal installation, getting an out of memory error. To work around this, create a new release of this project, specificying the "minimal" installation profiler rather than km_collaborative in composer.json script for "install-cms". This will skip the bigger KMC installation process. Once this succeeds, you'll need to run the proper profile installation on a local instance of the site and upload your database to the Pantheon Dev site.
If the command fails because of a composer conflict, you can try to debug this by running the simpler build command locally:
composer create-project united-philanthropy-forum/km-starter-kit thinkshout-foundation
If that fails as well, this repo needs to be updated.
If the build:project command fails for some reason, part of the skeleton for the new site might already exist. If it does, delete both the Pantheon environment and the github repo created, if either exist.
There is a lot of information about the build tools, which might help with debugging, in The Pantheon Build tools README. Pantheon also provides thorough documentation on the full scope of their build tools.
The Pantheon Build tools provides an build:env:obliterate command to delete a site that was spun up using the build:project:create
command. It will delete both the Pantheon site and the repo, so any changes you've made either place will be lost forever. Example:
terminus build:env:obliterate thinkshout-foundation
There are minimal files in this project, as it's meant to solely ease the handoff between The Pantheon Build tools and the KM Collaboration profile. So when an upstream change happens in the the D8 pantheon drop, the following update rules can be used to update this repo as well:
This code belongs in this project only. It should only need to be updated if you need to add another file to this repo.
This code belongs in this project only. It should only need to be updated if changes are made to the process or requirements.
This code was largely taken from the D8 pantheon drop, but has been customized to the point where it is too different to be worth parsing.
This is a direct copy of the same file in the D8 pantheon drop and will be overwritten by upstream changes on in the km-collaborative profile. This file needs to exist in this repo for the terminus build command to succeed, and it can be pulled from the drop to this repo directly at any time.
This code lives in this repository and is maintained in the km-collaborative profile. It is very much like the drupal scaffolding functionality in that it pulls files from another repo directly and overwrites them on composer install. Unlike the drupal-scaffold plugin, though, this script does not require you to declare every file you wish to pull from the child package to the site package.