Skip to content

Commit a75352f

Browse files
committed
fix: Update README.md to change RoadRunner badge link and remove SSL support mention.
1 parent e98721f commit a75352f

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</p>
77

88
<p align="center">
9-
<a href="docker-compose.roadrunner.yml" target="_blank">
9+
<a href="https://github.com/roadrunner-server/roadrunner" target="_blank">
1010
<img src="https://img.shields.io/badge/roadrunner-%23FF6B35.svg?label=stack&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJMMjIgMTJMMTIgMjJMMiAxMkwxMiAyWiIgZmlsbD0iI0ZGNkIzNSIvPgo8cGF0aCBkPSJNMTIgNkwxOCAxMkwxMiAxOEw2IDEyTDEyIDZaIiBmaWxsPSIjRkZGRkZGIi8+CjxwYXRoIGQ9Ik0xMiA5TDE1IDEyTDEyIDE1TDkgMTJMMTIgOVoiIGZpbGw9IiNGRjZCMzUiLz4KPC9zdmc+&logoColor=white" alt="roadrunner-badge">
1111
</a>
1212
<a href="https://www.php.net/releases/8.1/en.php" target="_blank">
@@ -41,7 +41,6 @@ A modern, Bootstrap 5-powered Yii2 application template designed for rapid web-a
4141
-**Console Commands** - Example console commands for background tasks and maintenance.
4242
-**Developer Tools** - Debugging tools, logging, and development-friendly configurations.
4343
-**Modern Bootstrap 5 UI** - Responsive, mobile-first design with latest Bootstrap components.
44-
-**SSL Support** - Configured for secure HTTPS connections with SSL (mkcert).
4544
-**Testing Ready** - Codeception test suite with examples for functional and unit testing.
4645

4746
## Quick start
@@ -69,18 +68,22 @@ The Yii2 Web Application Basic template provides a complete foundation for build
6968
**Quick start**
7069

7170
```bash
72-
composer create-project --prefer-dist --stability=dev yii2-extensions/app-basic myapp
73-
cd myapp
71+
composer create-project --prefer-dist --stability=dev yii2-extensions/app-basic:dev-road-runner app-basic
72+
cd app-basic
7473
```
7574

7675
**Start development server**
7776

77+
Download and install [RoadRunner](https://docs.roadrunner.dev/docs/general/install) first.
78+
7879
```bash
79-
# Using built-in PHP server
80-
php -S localhost:8080 -t web
80+
./vendor/bin/rr get-binary
81+
```
8182

82-
# Or using Yii console command
83-
./yii serve
83+
Run the server in daemon mode.
84+
85+
```bash
86+
./rr serve -d
8487
```
8588

8689
### Basic usage
@@ -119,7 +122,7 @@ namespace app\usecase\site;
119122

120123
use yii\web\Controller;
121124

122-
class SiteController extends Controller
125+
final class SiteController extends Controller
123126
{
124127
public function actionIndex(): string
125128
{

0 commit comments

Comments
 (0)