Skip to content

Instantly share code, notes, and snippets.

@CristianLlanos
Created November 25, 2015 04:37
Show Gist options
  • Save CristianLlanos/707c69a4ea7c554401fb to your computer and use it in GitHub Desktop.
Save CristianLlanos/707c69a4ea7c554401fb to your computer and use it in GitHub Desktop.
@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