24 lines
357 B
Markdown
Raw Normal View History

# Basic Auth Example
This example demonstrates how to use Basic authentication in Dumbo for multiple users.
## Running the Example
1. Install dependencies:
```bash
composer install
```
2. Start the server:
```bash
composer start
```
3. Access the protected route:
```bash
curl -u user:password http://localhost:8000
```