Created
November 25, 2015 04:37
-
-
Save CristianLlanos/707c69a4ea7c554401fb to your computer and use it in GitHub Desktop.
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
| @ECHO OFF | |
| SETLOCAL | |
| :: | |
| :: Sets up Laravel elixir starter project | |
| :: | |
| :: Assumed you have already installed: | |
| :: - NodeJS | |
| :: - Python 2.7 | |
| :: - Git | |
| :: | |
| :: Cristian Llanos <[email protected]> | |
| :: | |
| ECHO Cloning Laravel Elixir Starter Project... | |
| SET /p PROJECT_NAME=Project name: | |
| git clone https://github.com/CristianLlanos/laravel-elixir-starter %PROJECT_NAME% | |
| CD %PROJECT_NAME% | |
| :: Install package managers | |
| npm install -g bower | |
| npm install -g gulp | |
| :: Intall dependencies | |
| npm install | |
| bower install | |
| :: Set up server | |
| CD public | |
| ECHO Your IP address is: | |
| ipconfig | grep -i ipv4.*11 | |
| ECHO Starting local server... | |
| python -m SimpleHTTPServer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment