$ composer create-project laravel/laravel --prefer-dist CHANGEME.app
In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.
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
| server { | |
| listen 80; | |
| server_name vhosts; | |
| root /var/www/vhosts; | |
| index index.html index.htm index.php; | |
| charset utf-8; | |
| location / { |
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
| 1.Configurando Virtual Host (URL Interna) | |
| Aplicar Entrada | |
| cd /etc/ | |
| sudo subl hosts | |
| Aplicar nova entrada | |
| 127.0.0.1 CHANGEME.app | |
| 2.Adicionar Caminho ao Nginx | |
| cd etc/nginx | |
| cd sites-available/ |
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
| 1.Coisas Básicas | |
| sudo apt-get install vim git curl python-software-properties | |
| 2.ZSH | OH-MY-ZSH | |
| sudo apt-get install zsh | |
| zsh --version | |
| chsh -s /usr/bin/zsh | |
| Reiniciar Sessão | |
| echo $SHELL | |
| sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
NewerOlder