### Log Review Commands

Based on the project's documentation (`plug_and_play.md`), here are the specific commands to review the logs within the Docker environment.

#### 1. Laravel Application Logs
To view the last 100 lines of the application-specific logs (where Laravel 500 errors usually appear):

```bash
docker exec -it tmx-app tail -n 100 storage/logs/laravel.log
```

#### 2. Web Server (Apache) Error Logs
To view the web server logs (useful for segmentation faults, startup errors, or issues catching requests before they hit Laravel):

```bash
docker exec -it tmx-app tail -n 100 /var/log/apache2/error.log
```

#### 3. Container Startup Logs
If the container itself is failing to start or crashing immediately:

```bash
docker logs tmx-app
```
