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
Initialize new repository from CLI: | |
$ echo "# {yourproject.dev}" >> README.md | |
$ git init | |
$ git add README.md | |
$ git commit -m "first commit" | |
$ git remote add origin [email protected]:{username or org. name}/{yourproject.dev}.git | |
$ git push -u origin master | |
Create new branch: | |
$ git checkout -b {new_branch_name} |
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
Steps: | |
1. Run ansible command to add site events.dev from vagrant LAMP (Mac) | |
ansible-playbook ansible/create-vagrant-site.yml | |
2. Install Laravel w/ composer from VM | |
composer create-project laravel/laravel {projectname.dev} 4.2 --prefer-dist | |
3. Update /etc/hosts | |
subl /etc/hosts |
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
sass style.scss:style.css --style compressed | |
sass style.scss:style.css --watch |