Required env variables for WEB
The following env variables are required for the web frontend to run. If you miss any of the required variable, you should see the web startup fail with a [WEB] Environment variable error similar to below

Required variables
| Name | Type | Example |
|---|---|---|
| NEXT_PUBLIC_APP_ENV | string | NEXT_PUBLIC_APP_ENV=local |
| BASE_URL | url | BASE_URL=http://localhost:3000 |
| NEXT_PUBLIC_BASE_URL | url | NEXT_PUBLIC_BASE_URL=http://localhost:3000 |
| BACKEND_API_URL | url | BACKEND_API_URL=http://localhost:3001 |
| NEXTAUTH_URL | url | NEXTAUTH_URL=http://localhost:3000 |
| NEXTAUTH_SECRET | string | NEXTAUTH_SECRET=secret123 |