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/sh | |
| # This command is used for when assets are stored locally. For AWS syncing, see sync_aws.sh | |
| ## Custom `pull` command to sync your local db with a remote env. | |
| ## NOTE THAT THIS WILL REPLACE YOUR EXISTING DATABASE | |
| ## Usage: fin sync | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m |
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/sh | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m | |
| GREEN=\\x1B[32m | |
| RED=\\x1B[31m | |
| RESET=\\x1b[0m | |
| ## Easy way to SSH into a psh env | |
| ## Usage: fin ssh <environment> |
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
| # This is dependent on other jobs. Please download them from gist.github.com/mattbloomfield | |
| #!/bin/sh | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m | |
| GREEN=\\x1B[32m | |
| RED=\\x1B[31m | |
| RESET=\\x1b[0m |
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/sh | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m | |
| GREEN=\\x1B[32m | |
| RED=\\x1B[31m | |
| RESET=\\x1b[0m | |
| ## Replicates a deploy in a platform.sh environment | |
| ## Usage: fin replicate_deploy |
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 strict"; | |
| module.exports.endpoint = async (event, context, callback) => { | |
| const queryParams = event.queryStringParameters; | |
| if (!queryParams) callback("No query params"); | |
| const devUser = queryParams.user; | |
| const site = queryParams.site; | |
| const key = queryParams.key; |
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/sh | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m | |
| GREEN=\\x1B[32m | |
| RED=\\x1B[31m | |
| RESET=\\x1b[0m | |
| ## Useful to refresh your local .env file | |
| ## Usage: fin refresh_env |
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/sh | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m | |
| GREEN=\\x1B[32m | |
| RED=\\x1B[31m | |
| RESET=\\x1b[0m | |
| ## Custom `pull` command to sync your local files with a remote env. | |
| ## Usage: fin sync_files |
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
| #!/usr/bin/env bash | |
| ## Tails the logs output by CraftCMS | |
| ## Usage: fin logs | |
| # Forces whole job to error on failure | |
| set -e | |
| fin exec "tail -f storage/logs/*" |
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/sh | |
| BLUE=\\x1B[34m | |
| YELLOW=\\x1B[33m | |
| GREEN=\\x1B[32m | |
| RED=\\x1B[31m | |
| RESET=\\x1b[0m | |
| ## Removes any previous containers this project may have created, then starts and executes npm install/composer install | |
| ## Usage: fin init |
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/bash | |
| ## Saves the local DB to a file. If not supplied with a path, stored in /tmp/ with current timestamp | |
| ## Usage: fin db_dump [path] | |
| # Forces whole job to error on failure | |
| set -e | |
| TRANSACTION_ID=$(date +"%Y-%m-%d_%H-%M-%S") | |
| SAVE_PATH=$1 |