Skip to content
This repository was archived by the owner on Jun 13, 2019. It is now read-only.

Commit bf0c601

Browse files
author
Modus Create
committed
Update README.md
Updated readme
1 parent 6a95622 commit bf0c601

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,31 @@ extjs-in-action-examples
22
========================
33

44
Ext JS in Action SE Examples from http://manning.com/garcia3/
5+
6+
7+
**Installation instructions**
8+
9+
1) Clone the repo
10+
```
11+
git clone https://github.com/ModusCreateOrg/extjs-in-action-examples.git ./your_path_of_choice
12+
```
13+
14+
2) Create a virtual site (optional, but advised) based on what ever web server you use. An example apache vhost (assumes http://ext4ia):
15+
```
16+
<VirtualHost *:80>
17+
ServerAdmin liquid@localhost
18+
DocumentRoot /www/ext4ia
19+
ServerName ext4ia
20+
ServerAlias ext4ia
21+
ErrorLog /tmp/ext4ia.httpd.errlog
22+
<Directory /www/ext4ia>
23+
AllowOverride All
24+
Options ExecCGI FollowSymLinks
25+
Order allow,deny
26+
Allow from all
27+
</Directory>
28+
</VirtualHost>
29+
```
30+
31+
3) Visit your virtual host via http://myvirtualhost/examples/ch01 (or http://extjsinaction.com/v4/examples/);
32+

0 commit comments

Comments
 (0)