Skip to main content
Meridian is configured entirely through environment variables. There are no config files with special formats or UI settings to hunt down — every option is a key-value pair in a .env file. The installer creates these files and populates them during the credential walkthrough, but you can edit them at any time.

Where configuration lives

Meridian uses two env files, one per process boundary: A third internal env file is managed automatically by the installer and holds the OPENROUTER_API_KEY for cloud LLM fallback. In practice you never need to touch it directly — the installer keeps it in sync with the values you provide during setup.

Editing configuration

To open the daemon config in your $EDITOR, run:
This opens ~/.meridian/.env. To edit the Python agents config, open services/.env directly:
After saving, restart the relevant daemon for the change to take effect:

Environment variable reference

Core daemon settings

These variables control how the Rust daemon reads screenpipe data and classifies sessions. All of them are optional — the defaults work out of the box.
Setting CLASSIFICATION_ENABLED=false lets you run Meridian in activity-tracking mode. The daemon still reads screenpipe frames, builds app sessions, and assigns activity categories — it just skips the ticket-linking step and doesn’t require the MLX server to be running. This is useful if you’re not ready to configure PM credentials or just want to explore the session data first.

Jira

All three credential variables are required to enable the Jira connector. JIRA_PROJECT_KEYS is optional — omitting it syncs across all projects your account can access.

GitHub

Both credential variables are required to enable the GitHub connector. GITHUB_REPOS is optional — omitting it covers all repositories in your org.

Linear

The API key is required to enable the Linear connector. LINEAR_TEAM_IDS is optional.

Minimal working configuration

The smallest configuration that enables activity tracking, session categorisation, and Jira ticket sync is:
~/.meridian/.env
Everything else defaults to safe values and can be added incrementally.

Re-running credential prompts

The installer skips any variable that already has a value in the relevant .env file. To re-prompt for a specific credential, delete that line from the file and re-run the installer:
If you want to bypass the credential prompts entirely and manage the files yourself, pass --skip-env:
You can also edit ~/.meridian/.env directly with any text editor and then run meridian restart. The installer’s prompt flow is a convenience, not a requirement.