./script.sh us-east-1 /my/param/prefix/ example.env
Injects a command into the phpunit bootstrap to seralise the migrated database state to an sql file.
Then on every test case, reset the database using the generated file.
Everytime phpunit runs, the test:bootstrap command is executed.
This will check for the existance of a sql file and if not, it creates a temporary database, migrates into the database and dumps the final migration to a sql file.
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
tap "eugenmayer/dockersync" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/core" | |
tap "miderwong/flutter" | |
brew "[email protected]" | |
brew "asdf" | |
brew "aws-google-auth" | |
brew "aws-iam-authenticator" |
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
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space | |
indent_size = 4 |
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
$.fn.konami = function (options) { | |
var enterKey = 13; | |
if (typeof options == 'function') { | |
options = { callback: options }; | |
} | |
options = options || {}; | |
options = $.extend({ |
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
export ZSH=/Users/ben/.oh-my-zsh | |
ZSH_THEME="af-magic" | |
plugins=(git) | |
plugins=(zsh-autosuggestions) | |
source $ZSH/oh-my-zsh.sh | |
export GOPATH=$HOME/go | |
export GOROOT=/usr/local/opt/go/libexec | |
export PATH=$PATH:$GOPATH/bin |
NewerOlder