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
.\GoogleDriveFSSetup.exe --allow_server_install |
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
{ | |
"auth_email": "[email protected]", | |
"auth_key": "cloudflare auth_key", | |
"zone_name": "example.com", | |
"records": [ | |
"example.com", | |
"www.example.com" | |
] | |
} |
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
%systemroot%\ServiceProfiles\LocalService\AppData |
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
dism /online /enable-feature /all /featurename:NetFx3 /Source:${WindowsInstaller}:\sources\sxs |
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
version: '3.3' | |
services: | |
nginx: | |
image: settachok/nginx-laravel | |
volumes: | |
- ./:/var/www/html | |
ports: | |
- "80" | |
app: | |
image: php:fpm |
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
#Load folder-specific .bashrc or .bash_profile | |
PROMPT_COMMAND='if [[ "$bashrc" != "$PWD" && "$PWD" != "$HOME" && -e .bashrc ]]; then bashrc="$PWD"; . .bashrc; fi' | |
alias php='docker run -it --rm -v $(pwd -W):/app -w "//app" php php' | |
alias composer='docker run -it --rm -v $(pwd -W):/app composer' | |
alias node='docker run -it --rm -v $(pwd -W):/app -w "//app" node node' | |
alias npm='docker run -it --rm -v $(pwd -W):/app -w "//app" node npm' |