-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall Yii2
31 lines (25 loc) · 883 Bytes
/
install Yii2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Setup Yii2 on Linux platform
Prerequisite
composer must be installed.
#### Clone repository ####
git clone https://github.com/yiisoft/yii2
#### Setup Yii2 advanced application ####
#### Change to advanced direcoty ####
cd yii2/apps/advanced
#### Install dependancies ####
composer install
### Setup Yii2 advanced application in development mode ####
php init --env=Development --overwrite=n
Run:
Set cookieValidationKey in yii2/apps/advanced/frontend/config/main.php
http://localhost/yii2/apps/advanced/frontend/web/index.php
#### Setup Yii2 basic application ####
#### Change to basic direcoty ####
cd yii2/apps/basic
#### Install dependancies ####
composer install
### Setup Yii2 basic application in development mode ####
php init --env=Development --overwrite=n
Run:
Set cookieValidationKey in yii2/apps/basic/config/main.php
http://localhost/yii2/apps/basic/web/index.php