Skip to content

Instantly share code, notes, and snippets.

View kklecho's full-sized avatar

Krzysztof Lechowski kklecho

  • Dublin, Ireland
View GitHub Profile
sudo apt install snapd snapd-xdg-open
sudo snap install phpstorm --classic
phpstorm
mkdir assets/js/components
touch assets/js/components/App.vue
php bin/console make:controller HomeController
npm run dev
## no composer?
# curl -s https://getcomposer.org/installer | php
# mv composer.phar ~/bin/composer
## no symfony?
# wget https://get.symfony.com/cli/installer -O - | bash
# echo '# KL Symfony instalation' >> ~/.bashrc
# echo 'export PATH="$HOME/.symfony/bin:$PATH"' >> ~/.bashrc
# no npm? use latest lts of node, today it's 12
@kklecho
kklecho / git_common
Last active April 6, 2021 16:46
common git commands
git init
git add .
git commit -m "Initial commit"
# now create repo in github or elsewhere, get it's url and run below
git remote add origin <url_or_ssh>
# check
git remote -v