# Vault Display — Step 01 Foundation

This package contains the foundation for the Next Theme seven-screen shop display platform.

## Install

1. Upload/extract to your server or local dev machine.
2. Create/import the database:

```bash
mysql -u root -p < install/schema.sql
mysql -u root -p < install/seed.sql
```

3. Edit:

```text
config/database.php
```

or set environment variables:

```text
DB_HOST
DB_DATABASE
DB_USERNAME
DB_PASSWORD
```

4. Visit:

```text
/public/index.php
/api/screens.php
/api/screen-config.php?screen=counter
```

## Completed in Step 01

- Folder structure
- Config files
- PDO database connection
- JSON response helper
- Database schema
- Seed data for seven screens
- Screen group for four-screen matrix wall
- Initial screen config API
- Initial screen list API

## Next Step

Step 02 will add the display player, playlist API, placeholder content, localStorage screen assignment, and basic image/HTML slide rotation.
