This file contains hidden or 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/csh | |
################## | |
# Variables | |
################## | |
# Path to a place to store your sites. | |
WEBSERVERROOT=/httpdocs #no trailing slash | |
# Path to your lando configuration file for Drupal 7 | |
LANDOCONFIG=/Users/admin/scripts/su/d7.lando.yml |
This file contains hidden or 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
name: [shortname] | |
recipe: drupal7 | |
config: | |
webroot: / | |
php: '7.1' | |
services: | |
appserver: | |
ssl: true | |
database: | |
type: mysql:5.7 |
This file contains hidden or 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/csh | |
################## | |
# Variables | |
################## | |
# Path to a place to store your sites. | |
WEBSERVERROOT=/httpdocs #no trailing slash | |
# Path to your lando configuration file for Drupal 7 | |
LANDOCONFIG=/Users/admin/scripts/su/d7.lando.yml |
This file contains hidden or 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
LANDO FILE: | |
---------------------------------------------------- | |
name: cardinalsites | |
recipe: drupal8 | |
config: | |
webroot: docroot | |
php: '7.3' | |
xdebug: true | |
services: | |
appserver: |
This file contains hidden or 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
import React from 'react' | |
import Components from '../components/components.js' | |
import SbEditable from 'storyblok-react' | |
import config from '../../gatsby-config' | |
import Loader from 'react-loader-spinner' | |
const sbConfigs = config.plugins.filter((item) => { | |
return item.resolve === 'gatsby-source-storyblok' | |
}) | |
const sbConfig = sbConfigs.length > 0 ? sbConfigs[0] : {} |
This file contains hidden or 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
/** Delete a record based on finding record id in the 2way link field venue **/ | |
const table = base.getTable("Web Only"); | |
const inputConfig = input.config(); | |
const recordId = inputConfig['recordId']; | |
const fieldName = 'Venue'; | |
// Can't query just by a field value so we have to get all the fields and loop through them. | |
const queryResult = await table.selectRecordsAsync({fields: ['Name', fieldName]}) | |
const matchingRecords = queryResult.records.filter((record) => { | |
const vals = record.getCellValue(fieldName); | |
if (vals && vals[0] && vals[0].id && vals[0].id == recordId) { |
This file contains hidden or 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
# Good Enough Testing | |
This document outlines the philosophy of "Good Enough Testing" and provides practical guidelines for ensuring that the website functions as intended without over-investing in exhaustive test coverage. | |
--- | |
## Philosophy | |
Testing is not about achieving perfection. It is about ensuring that the website: | |
1. **Does what it is supposed to do**: Verify that key features and functionality work as expected. |
OlderNewer