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
| # Use Alpine Linux | |
| FROM alpine:latest | |
| # Environments | |
| ENV TIMEZONE Etc/UTC | |
| ENV PHP_MEMORY_LIMIT 512M | |
| ENV MAX_UPLOAD 50M | |
| ENV PHP_MAX_FILE_UPLOAD 200 | |
| ENV PHP_MAX_POST 100M |
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
| # Don't load custom stuff if LocalWP shell | |
| if [[ -z ${PHPRC+z} ]] | |
| then | |
| echo "Export custom binaries" | |
| # Eg. | |
| # export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH" | |
| # export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH" | |
| fi |
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/zsh | |
| # Script to force install Gravity Forms and All Add-ons via Gravity Forms CLI (https://docs.gravityforms.com/category/add-ons-gravity-forms/wp-cli-add-on/) | |
| # Note: You must `define('GF_LICENSE_KEY','your_license_key')` with a valid Elite or higher License key | |
| # Install Gravity Forms Core Plugin | |
| wp gf install --force --activate | |
| addons=( | |
| "gravityforms2checkout" |
OlderNewer