Skip to content

Commit a2f37fc

Browse files
committed
fix(docs): Correct formatting and improve clarity in documentation files.
1 parent 466abe3 commit a2f37fc

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Change Log
1+
# ChangeLog
22

33
## 0.1.2 October 8, 2025
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ php -S localhost:8080 -t web
103103
root/
104104
├── config/ Configuration files
105105
│ ├── common/ Common configuration
106-
│ ├── console/ Console configuration
106+
P│ ├── console/ Console configuration
107107
│ ├── web/ Web configuration
108108
│ └── messages.php Translation config
109109
├── src/

docs/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
This guide covers all configuration options for the Yii2 Web Application Basic template, from basic setup to advanced
5+
This guide covers all configuration options for the Yii2 Web Application Basic template, from basic setup to advanced
66
customization for production environments.
77

88
## Configuration structure
@@ -201,13 +201,13 @@ declare(strict_types=1);
201201
$config = [
202202
'debug' => [
203203
'class' => yii\debug\Module::class,
204-
// development only: allows all IPs.
204+
// development only: allows all IPs.
205205
// for production, replace '*' with explicit trusted IPs (for example, ['127.0.0.1', '::1']).
206206
'allowedIPs' => ['*'],
207207
],
208208
'gii' => [
209209
'class' => yii\gii\Module::class,
210-
// development only: allows all IPs.
210+
// development only: allows all IPs.
211211
// for production, replace '*' with explicit trusted IPs (for example, ['127.0.0.1', '::1']).
212212
'allowedIPs' => ['*'],
213213
],

docs/installation.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,19 @@ cd app-basic
2525
### Method 2: Manual installation
2626

2727
1. **Download the template**:
28+
2829
```bash
2930
git clone --branch 0.1 https://github.com/yii2-extensions/app-basic.git app-basic
3031
cd app-basic
3132
```
3233

3334
2. **Install dependencies**
35+
3436
```bash
3537
composer install
3638
```
3739

38-
### Method 3: Using git
40+
### Method 3: Using Git
3941

4042
Clone the repository and set up your project.
4143

@@ -77,16 +79,19 @@ php -S localhost:8080 -t web
7779
### Database setup
7880

7981
1. **Create database**
82+
8083
```sql
8184
CREATE DATABASE app_basic CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
8285
```
8386

8487
2. **Run migrations** (if available)
88+
8589
```bash
8690
./yii migrate
8791
```
8892

8993
3. **Seed test data** (optional)
94+
9095
```bash
9196
./yii fixture/load
9297
```

0 commit comments

Comments
 (0)