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
| { | |
| "AD": "آندورا", | |
| "AE": "امارات متحده عربی", | |
| "AF": "افغانستان", | |
| "AG": "آنتیگوا و باربودا", | |
| "AI": "آنگویلا", | |
| "AL": "آلبانی", | |
| "AM": "ارمنستان", | |
| "AO": "آنگولا", | |
| "AQ": "جنوبگان", |
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
| # install docker | |
| sudo apt update | |
| sudo apt install apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
| sudo apt update | |
| apt-cache policy docker-ce | |
| sudo apt install docker-ce | |
| sudo systemctl status docker | |
| sudo usermod -aG docker ${USER} |
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
| in tasks.json | |
| { | |
| "label": "pytest", | |
| "command": "pytest ${file}", // Could be any other shell command | |
| "type": "shell" | |
| } | |
| in keybindings.json |