[API reference](https://evolu.dev/docs/api-reference) › [@evolu/common](https://evolu.dev/docs/api-reference/common) › [Config](https://evolu.dev/docs/api-reference/common/Config) › EnvName

```ts
const EnvName: maxLength(255)(ConstantCaseIdentifier);
```

Defined in: [packages/common/src/Config.ts:76](https://github.com/evoluhq/evolu/blob/ecbac001e0c18bbc45b44715f49ecc3a768c5ec9/packages/common/src/Config.ts#L76)

An environment variable name in Evolu's configuration convention.

Names are [ConstantCaseIdentifier](https://evolu.dev/docs/api-reference/common/Type/variables/ConstantCaseIdentifier)s of at most 255 characters, including
the application prefix. This is an Evolu convention, not an operating-system
limit. Double underscores do not introduce nesting.

### Example

```ts

assertOk(EnvName.fromUnknown("APP_MAX_OWNER_BYTES"), "APP_MAX_OWNER_BYTES");
assertErr(EnvName.fromUnknown("APP_maxOwnerBytes"));
assertErr(EnvName.fromUnknown("APP_DB__PORT"));
```