Skip to content

Commit f2fac84

Browse files
committed
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.
1 parent cdcc0d5 commit f2fac84

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,24 @@ This repository contains (almost) everything that makes up
66

77
Powered by [Sculpin](http://sculpin.io). =)
88

9+
### Install Composer if not exist.
910

11+
`curl -s https://getcomposer.org/installer | php`
12+
13+
Or if you don't have curl:
14+
15+
`php -r "readfile('https://getcomposer.org/installer');" | php`
1016
Build
1117
-----
1218

1319
### If You Already Have Composer
1420

15-
composer install
16-
vendor/bin/sculpin generate --watch --server
21+
`php composer.phar install`
22+
23+
`vendor/bin/sculpin generate --watch --server`
1724

1825
Your newly generated clone of [stackphp.com](http://stackphp.com) is now
19-
accessible at `http://localhost:8000/`.
26+
accessible at `http://127.0.0.1:8080/`.
2027

21-
### If You Need Composer
2228

23-
curl -s https://getcomposer.org/installer | php
24-
php composer.phar install
25-
vendor/bin/sculpin generate --watch --server
2629

0 commit comments

Comments
 (0)