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

Commit 5343fec

Browse files
author
Jay Garcia
committed
Merge branch 'master' of github.com:ModusCreateOrg/extjs-in-action-examples
Conflicts: .gitignore
2 parents 176ffe3 + 9c8f2c3 commit 5343fec

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
.idea
2-
*DS_Store
3-
4-
.idea/workspace.xml
5-
*.iml
6-
examples/ch14/build
7-
1+
.DS_Store

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)