Work in Progress: These docs are incomplete and may contain inaccuracies. Norri is not yet available for download.

Environment Variables

Note

Work in Progress

This documentation is being written. Check back soon for detailed instructions.

Overview

Environment variables can override configuration file settings. Useful for Docker deployments.

Available Variables

VariableDefaultDescription
NORRI_PORT8096HTTP server port
NORRI_DATA_DIR/configData directory path
NORRI_LOG_LEVELinfoLogging level
TZUTCTimezone

Database

VariableDefaultDescription
NORRI_DB_HOSTlocalhostPostgreSQL host
NORRI_DB_PORT5432PostgreSQL port
NORRI_DB_NAMEnorriDatabase name
NORRI_DB_USERnorriDatabase user
NORRI_DB_PASS(none)Database password

Docker Compose Example

environment:
  - TZ=Europe/London
  - NORRI_LOG_LEVEL=debug
  - NORRI_DB_HOST=postgres
  - NORRI_DB_PASS=your-password-here