From f2fac84e2d5c264ad27ae02e3bcb55acc46948f8 Mon Sep 17 00:00:00 2001 From: Vallabh Kansagara Date: Thu, 24 Sep 2015 11:23:41 +0530 Subject: [PATCH] loop back server address changed. (1) Loop back address for the local host be changed form http://localhost:8000/ to http://127.0.0.0:808/ [Reason: some time fail to redirect in browser back once watch server is running.] (2) Order of composer installation and building order minor changed for the newbies. --- README.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 48382f0..cb05574 100644 --- a/README.md +++ b/README.md @@ -6,21 +6,24 @@ This repository contains (almost) everything that makes up Powered by [Sculpin](http://sculpin.io). =) +### Install Composer if not exist. +`curl -s https://getcomposer.org/installer | php` + +Or if you don't have curl: + +`php -r "readfile('https://getcomposer.org/installer');" | php` Build ----- ### If You Already Have Composer - composer install - vendor/bin/sculpin generate --watch --server +`php composer.phar install` + +`vendor/bin/sculpin generate --watch --server` Your newly generated clone of [stackphp.com](http://stackphp.com) is now -accessible at `http://localhost:8000/`. +accessible at `http://127.0.0.1:8080/`. -### If You Need Composer - curl -s https://getcomposer.org/installer | php - php composer.phar install - vendor/bin/sculpin generate --watch --server