A custom, REST-based API that returns JSON for various content from the Drupal CMS.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Requires jq binary | |
# Requires websocat binary | |
source ~/.profile | |
SERVER="wss://XXXXXX.ui.nabu.casa/api/websocket" | |
ENTITY1="input_boolean.adamo_meeting" | |
ENTITY2="input_boolean.work_auto_lock" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "vscode://schemas/color-theme", | |
"type": "dark", | |
"colors": { | |
"editor.background": "#372725", | |
"editor.foreground": "#e6e1c4", | |
"editor.lineHighlightBackground": "#281c1c66", | |
"editor.selectionBackground": "#a40042", | |
"editorCursor.foreground": "#dddddd", | |
"editorError.foreground": "#ff2600", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Allow post config updates to run. | |
*/ | |
/** | |
* Implements hook_install(). | |
*/ |
This is very loose and not official. I leaned heavily on the excellent documentation on Pantheon (linked in various spots below). Written quickly, after the fact. Ping me if something doesn't go right, and always remember to backup your work :)
- Have a Pantheon account/site
- Have a CircleCI account authorized to work with GitHub
- Have a GitHub account/repo
The premise of this is pretending you're making a brand new, squeakly clean, Build-Tools based Pantheon D8 site from scratch. Once it's setup, we start integrating/copying things to our existing D8 site/repo. So if you have an existing D8 site called "mysite," use "mysite2" for everything in the official directions.