This script saves GitHub issues in TSV format
The script has two software dependancies:
- GitHub CLI for querying GitHub API
jqfor transforming the output of the above to TSV format
| version: '3.1' | |
| services: | |
| nginx-proxy: | |
| image: jwilder/nginx-proxy | |
| restart: always | |
| ports: | |
| - "80:80" | |
| - "443:443" | |
| volumes: | |
| - /var/run/docker.sock:/tmp/docker.sock:ro |
| switch-php() { | |
| valet stop | |
| brew unlink php@7.2 php@7.3 php@7.4 | |
| brew link --force --overwrite php@$1 | |
| brew services restart php@$1 | |
| composer global update | |
| rm -f ~/.config/valet/valet.sock | |
| valet install | |
| } |
| DB_CONNECTION=pgsql | |
| DB_HOST=127.0.0.1 | |
| DB_DATABASE=guesture_stage | |
| DB_USERNAME=dev_user | |
| DB_PASSWORD=**** | |
| DB_HOST_2=1.1.1.1#ip of production database server | |
| DB_PORT_2=1234 #port | |
| DB_DATABASE_2=guesture_pro #production database name | |
| DB_USERNAME_2=prod_user #production database username |
This script saves GitHub issues in TSV format
The script has two software dependancies:
jq for transforming the output of the above to TSV formatA Pen by mertcanaltin on CodePen.