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
#install | |
composer require symfony/http-client | |
#use | |
use Symfony\Component\HttpClient\HttpClient; | |
$client = HttpClient::create(); | |
$response = $client->request('GET', 'https://api.github.com/repos/symfony/symfony-docs'); | |
$statusCode = $response->getStatusCode(); |
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
# npm perm issues when instaling packages globally, | |
# src: https://stackoverflow.com/questions/33725639/npm-install-g-less-does-not-work | |
mkdir ~/.npm-global | |
npm config set prefix '~/.npm-global' | |
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.profile | |
source ~/.profile | |
# try: | |
npm install -g @vue/cli |
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
# https://developer.okta.com/blog/2018/06/14/php-crud-app-symfony-vue | |
# https://bootstrap-vue.js.org/docs/components/pagination/ | |
#console1 | |
mkdir -p ~/Project/movb | |
cd ~/Project/movb | |
symfony new movb-server --version=lts | |
composer require sensio/framework-extra-bundle | |
composer require symfony/orm-pack | |
composer require symfony/maker-bundle --dev |
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
sudo umount /mnt/c | |
sudo mount -t drvfs C: /mnt/c -o metadata | |
source: https://askubuntu.com/questions/1115564/wsl-ubuntu-distro-how-to-solve-operation-not-permitted-on-cloning-repository |
OlderNewer