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
| git branch | grep -v "master\|development" | xargs git branch -D |
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
| server { | |
| listen 8080; | |
| index index.php index.html; | |
| server_name _; | |
| error_log /var/log/nginx/error.log; | |
| access_log /var/log/nginx/access.log; | |
| root /var/www/app/public; | |
| client_max_body_size 10M; | |
| location / { |
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
| clear_docker_logs() { | |
| echo "truncate -s 0 /var/lib/docker/containers/*/*-json.log; exit" | nc -U ~/Library/Containers/com.docker.docker/Data/debug-shell.sock | |
| } |
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
| ind . -name "*.js" -type f -not -path "./node_modules/*" -not -path "./**/node_modules/*" -print0 | xargs -0 -I {} bash -c 'node --check {}' |
OlderNewer