Skip to content

Commit 057d9fc

Browse files
committed
Added Quick Start guide and improved installation documentation
1 parent a7c0133 commit 057d9fc

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,26 @@ php -S localhost:8000
6262

6363
**📖 [5-Minute Quick Start Guide →](docs/QUICK_START.md)**
6464

65-
### Option 2: Standalone Project
65+
### Option 2: Standalone Project (Even Simpler!)
6666

67-
Clone or download the full project:
67+
Download complete ready-to-use project:
6868

6969
```bash
70-
composer create-project bitshost/php-crud-api-generator
70+
composer create-project bitshost/php-crud-api-generator my-api
71+
cd my-api
72+
73+
# Configure
74+
cp config/db.example.php config/db.php
75+
cp config/api.example.php config/api.php
76+
notepad config/db.php
77+
notepad config/api.php
78+
79+
# Run
80+
php -S localhost:8000
7181
```
7282

83+
**That's it!** Everything in one folder, ready to run. **0 lines to modify** 🚀
84+
7385
---
7486

7587
## ⚙️ Configuration

0 commit comments

Comments
 (0)