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 apt install snapd snapd-xdg-open | |
sudo snap install phpstorm --classic | |
phpstorm |
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
mkdir assets/js/components | |
touch assets/js/components/App.vue | |
php bin/console make:controller HomeController | |
npm run 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
## 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 |
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
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 |
NewerOlder