Hassle Free Setup of Your Mac Binaries, Applications, Projects and Plugins.
- Quick Start Guide
- Laravel: Bootstrap Front-End
- Mac Application Setup
- Sublime Text Plugins
- Dependencies
- Clone the repo URI
git clone https://github.com/csun-metalab/automation.git - Create an alias with the path to desired script in
~/.bash_profile - Restart OR source command-line with
source ~/.bash_profile - Run the desired script (ex.
laravel-bootstrap,mac-setup, orsublime-plugins)
Update your ~/.bash_profile with the following:
alias laravel-bootstrap=~/path/to/script/laravel-bootstrapCreate a new Laravel project w/ laravel new <project-name> followed by laravel-bootstrap. The following can now be automatically added to your Laravel project.
Laravel Project
├── .bowerrc
├── bower.json
├── elixir.json
├── gulpfile.js
├── node_modues
│ ├── gulp
│ └── laravel-elixir
├── resources
│ └── views
│ ├── layouts
│ │ ├── master.blade.php
│ │ └── partials
│ └── pages
│ └── landing.blade.php
└── vendor
└── bower_components # Add to your .bash_profile
alias mac-setup=~/path/to/script/mac-setup # Add to your .bash_profile
alias sublime-plugins=~/path/to/script/sublime-pluginsBefore you get started you may also need to add the following:
# Adding Homebrew
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Adding Node w/ Homebrew
$ brew install node
# Adding Bower Globally
$ npm install -g bower
# Adding Gulp Globally
$ npm install --global gulp
# Adding Composer Globally
$ curl -sS https://getcomposer.org/installer | php
$ mv composer.phar /usr/local/bin/composer