# Quickstart: Event Management App

## Prerequisites
- Docker and Docker Compose installed
- Git

## Getting Started

1. **Clone and Enter Directory**:
   ```bash
   git clone <repo>
   cd event-management-app
   ```

2. **Start the Containers**:
   ```bash
   docker-compose up -d --build
   ```

3. **Install Dependencies**:
   ```bash
   docker-compose exec app composer install
   ```

4. **Run Migrations (SQLite Setup)**:
   ```bash
   docker-compose exec app php bin/console migrations:migrate
   ```

5. **Access the Application**:
   - Public UI: `http://localhost:8000`
   - PocketBase Admin: `http://localhost:8090/_/`

## Running Tests
```bash
docker-compose exec app vendor/bin/phpunit
```
