# CodeNexus environment variables template.
#
# Copy this file to `.env` (or export the variables in your shell) and adjust
# as needed. CodeNexus is a CLI tool and does NOT read `.env` files itself;
# this template is for shells, process managers (systemd, supervisord, docker),
# and the `direnv` tool to consume.
#
# Real secrets must never be committed. The `.gitignore` ignores `.env` and
# `.env.*` but explicitly allow-lists `.env.example` via `!.env.example`.
# ----------------------------------------------------------------------------
# Logging
# ----------------------------------------------------------------------------
# `tracing` log level. Supports both a single level and per-module filtering:
# RUST_LOG=info
# RUST_LOG=debug
# RUST_LOG=codenexus=debug,sqlx=warn
# Default if unset: info
RUST_LOG=info
# ----------------------------------------------------------------------------
# Database location (optional)
# ----------------------------------------------------------------------------
# Default LadybugDB database path used when `--db` is not passed to `index`,
# `query`, `status`, etc. Commented out to use the built-in default
# (./codenexus.lbug in the current working directory).
# CODENEXUS_DB_PATH=./codenexus.lbug