mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
- Implemented unit tests for the WorkflowEngine, covering various scenarios including simple workflows, condition handling, and error cases. - Created a test coverage report generator to identify untested functions and provide actionable recommendations. - Added a symlink for vite 2 configuration to streamline build processes.
29 lines
694 B
Plaintext
29 lines
694 B
Plaintext
# DBAL Daemon Environment Variables
|
|
# Copy this file to .env and customize for your environment
|
|
|
|
# Server Configuration
|
|
DBAL_BIND_ADDRESS=127.0.0.1
|
|
DBAL_PORT=8080
|
|
DBAL_MODE=production
|
|
|
|
# Configuration File
|
|
DBAL_CONFIG=config.yaml
|
|
|
|
# Daemon Mode
|
|
# Set to "true" to run in daemon mode (background)
|
|
# Set to "false" for interactive mode (default)
|
|
DBAL_DAEMON=false
|
|
|
|
# Logging Configuration
|
|
# Levels: trace, debug, info, warn, error, critical
|
|
DBAL_LOG_LEVEL=info
|
|
|
|
# Database Configuration (future use)
|
|
# DBAL_DB_PATH=/data/dbal.db
|
|
# DBAL_DB_POOL_SIZE=10
|
|
|
|
# Multi-Tenant Configuration (future use)
|
|
# DBAL_DEFAULT_QUOTA_BLOB_MB=1024
|
|
# DBAL_DEFAULT_QUOTA_RECORDS=100000
|
|
# DBAL_DEFAULT_QUOTA_KV_MB=500
|