> ## Documentation Index
> Fetch the complete documentation index at: https://docs.miscord.ru/llms.txt
> Use this file to discover all available pages before exploring further.

# Feature profile e2e

# Feature-profile E2E

Miscord has separate browser contracts for the minimal and full feature sets.
Recreate the backend between profiles so Docker applies the changed flags.

## Minimal profile

```powershell theme={"dark"}
docker compose -f docker-compose.yml -f docker-compose.local.yml -f docker-compose.features-minimal.yml up -d --build --force-recreate backend frontend nginx
Set-Location frontend
npm run test:e2e:minimal
```

## Full profile

```powershell theme={"dark"}
Set-Location ..
docker compose -f docker-compose.yml -f docker-compose.local.yml -f docker-compose.features-full.yml up -d --build --force-recreate backend frontend nginx
Set-Location frontend
npm run test:e2e:full
```
