Skip to content

Commit 99d73c7

Browse files
readme update
1 parent d72650d commit 99d73c7

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,27 @@ Demo administration: http://demo.aisel.co/administration [backenduser/backenduse
1212
Installation
1313
-----------------------------------
1414

15-
1.) cd to your website directory and download composer with: <br/>
15+
1.) Download composer<br/>
1616
```bash
1717
curl -sS https://getcomposer.org/installer | php
1818
```
1919
2.) Create project, installer will ask you dbname, username, password, etc.. <br/>
2020
```bash
2121
php composer.phar create-project -s dev aisel/aisel
2222
```
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/>
2536
Mac users:<br/>
2637
```bash
2738
sudo chmod +a "_www allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs<br/>
@@ -32,16 +43,6 @@ Linux users:<br/>
3243
sudo chown -R www-data:www-data app/cache app/logs<br/>
3344
```
3445

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/>
4546

4647

4748
Once this steps is done you will be able to access admin section from http://yourwebsitename.dev/administration/

0 commit comments

Comments
 (0)