50 lines
2.0 KiB
Plaintext
50 lines
2.0 KiB
Plaintext
# =============================================================================
|
|
# LOCAL CI ENVIRONMENT VARIABLES
|
|
# =============================================================================
|
|
# Copy this file to .env.local and adjust values for your machine:
|
|
# cp .env.local.template .env.local
|
|
#
|
|
# .env.local is git-ignored. Do NOT commit secrets.
|
|
# =============================================================================
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Test toggles
|
|
# ---------------------------------------------------------------------------
|
|
# Set to 1 to enable RabbitMQ integration tests (requires running RabbitMQ)
|
|
STELLAOPS_TEST_RABBITMQ=0
|
|
|
|
# Set to 1 to enable Valkey/Redis integration tests (requires running Valkey)
|
|
STELLAOPS_TEST_VALKEY=0
|
|
|
|
# Enable full integration test suite (needs supporting services)
|
|
STELLAOPS_INTEGRATION_TESTS=false
|
|
|
|
# Enable live/external tests (network-dependent, not offline-safe)
|
|
STELLAOPS_LIVE_TESTS=false
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# External service connections
|
|
# ---------------------------------------------------------------------------
|
|
# Testcontainers auto-configure PostgreSQL; only set for an external instance
|
|
STELLAOPS_TEST_POSTGRES_CONNECTION=
|
|
|
|
# MongoDB connection string (leave empty to skip Mongo-dependent tests)
|
|
STELLAOPS_TEST_MONGO_URI=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# HSM / crypto
|
|
# ---------------------------------------------------------------------------
|
|
# Path to SoftHSM2 shared library (leave empty to skip HSM tests)
|
|
# Linux: /usr/lib/softhsm/libsofthsm2.so
|
|
# macOS: /usr/local/lib/softhsm/libsofthsm2.so
|
|
# Windows: C:\SoftHSM2\lib\softhsm2-64.dll
|
|
STELLAOPS_SOFTHSM_LIB=
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# .NET runtime
|
|
# ---------------------------------------------------------------------------
|
|
DOTNET_NOLOGO=1
|
|
DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
|
|
TZ=UTC
|