@@ -12,16 +12,27 @@ Demo administration: http://demo.aisel.co/administration [backenduser/backenduse
12
12
Installation
13
13
-----------------------------------
14
14
15
- 1.) cd to your website directory and download composer with: <br />
15
+ 1.) Download composer<br />
16
16
``` bash
17
17
curl -sS https://getcomposer.org/installer | php
18
18
```
19
19
2.) Create project, installer will ask you dbname, username, password, etc.. <br />
20
20
``` bash
21
21
php composer.phar create-project -s dev aisel/aisel
22
22
```
23
- then set aisel as current directory with cd aisel/ and finish installation with commands bellow:<br />
24
- Important: webserver needs permissions to save cache, logs and sessions<br />
23
+ then cd aisel/ and finish installation with commands bellow:<br />
24
+ 4.) Launch installation:<br />
25
+ ``` bash
26
+ php app/console aisel:install
27
+ ```
28
+ 5.) Install frontend dependencies with Bower<br />
29
+ ``` bash
30
+ bower install
31
+ ```
32
+ Bower is a command line utility. Install it with npm.<br />
33
+ $ npm install -g bower<br />
34
+
35
+ Important!: webserver needs permissions to save cache, logs and sessions<br />
25
36
Mac users:<br />
26
37
``` bash
27
38
sudo chmod +a " _www allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs< br/>
@@ -32,16 +43,6 @@ Linux users:<br/>
32
43
sudo chown -R www-data:www-data app/cache app/logs< br/>
33
44
```
34
45
35
- 4.) Launch installation with command:<br />
36
- ``` bash
37
- php app/console aisel:install
38
- ```
39
- 5.) Install frontend dependencies with Bower<br />
40
- ``` bash
41
- bower install
42
- ```
43
- Bower is a command line utility. Install it with npm.<br />
44
- $ npm install -g bower<br />
45
46
46
47
47
48
Once this steps is done you will be able to access admin section from http://yourwebsitename.dev/administration/
0 commit comments