This repository was archived by the owner on Jun 13, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +29
-7
lines changed Expand file tree Collapse file tree 2 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 1
- .idea
2
- * DS_Store
3
-
4
- .idea /workspace.xml
5
- * .iml
6
- examples /ch14 /build
7
-
1
+ .DS_Store
Original file line number Diff line number Diff line change @@ -2,3 +2,31 @@ extjs-in-action-examples
2
2
========================
3
3
4
4
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
+
You can’t perform that action at this time.
0 commit comments