Between us [company name] and you [customer name]
<?php | |
/** | |
* Implements hook_drush_command(). | |
*/ | |
function seed_derivatives_drush_command() { | |
$items = array(); | |
$items['seed_derivatives'] = array( | |
'description' => "Create image derivatives", |
version: 1.0.0 | |
events: | |
build: | |
steps: | |
- build: | |
type: script | |
script: | |
- bash -e scripts/pipelines_build.sh |
#!/bin/bash | |
SOURCE=/volume1 | |
DEST=/volume2 | |
APPDIR=\@appstore | |
ASK=true | |
while getopts ":y" opt; do | |
case $opt in |
<?php | |
/** | |
* Read in a CSV file as taken from the command line arg | |
* CSV file needs to be in the same directory as this | |
* script for the time being | |
* | |
* Output is expected to be text representing an ACL | |
* declaration that can be copypasta'd into a VCL file. | |
* |
""" | |
Support for The Shelly Wifi switch. | |
Save this file inside ".homeassistant/custom_components/switch" (create the folders if not present) and restart HASS. | |
usage example: | |
switch: | |
- platform: shelly | |
switches: |
Docker enables fast local environments. DDEV simplifies the use of Docker for PHP projects. With your project configuration can shared with others on the team and version-controlled for consistency and easier maintenance.
If you already have Docker, update to the latest version, otherwise, download Docker from https://docs.docker.com/docker-for-mac/install. You will need to login with your Docker ID and password.
Install Docker to your Applications folder as with any other app (perhaps add it to your macOS Dock as well).
Docker enables fast local environments. Tokaido gets you quickly up and running.
If you already have Docker, update to the latest version, otherwise, download Docker from https://docs.docker.com/docker-for-mac/install. You will need to login with your Docker ID and password.
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: light-gray; icon-glyph: car; | |
// version 2025-06-29 | |
// latest changes: | |
// not showing invalid charging kW when not available - thanks to dehsgr! <3 | |
// add your my-renault account data: | |
let myRenaultUser = "your_email" // email | |
let myRenaultPass = "your_password" // password |
stages: | |
- Deploy | |
# @todo implement a Build and Test step to verify code quality before deploy | |
# IMPORTANT: `acli push:artifact` leverages composer internally to build dependencies, so no separate build step is required. | |
'Deploy to Acquia': | |
image: php:8.2 | |
stage: Deploy | |
rules: |