We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c0133 commit 057d9fcCopy full SHA for 057d9fc
1 file changed
README.md
@@ -62,14 +62,26 @@ php -S localhost:8000
62
63
**📖 [5-Minute Quick Start Guide →](docs/QUICK_START.md)**
64
65
-### Option 2: Standalone Project
+### Option 2: Standalone Project (Even Simpler!)
66
67
-Clone or download the full project:
+Download complete ready-to-use project:
68
69
```bash
70
-composer create-project bitshost/php-crud-api-generator
+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
81
```
82
83
+**That's it!** Everything in one folder, ready to run. **0 lines to modify** 🚀
84
85
---
86
87
## ⚙️ Configuration
0 commit comments