Settings

Application configuration. Edit .env in the project root or in public/ to change values, then restart the server.

Current configuration

Read-only view. Changes require editing .env and restarting the PHP server.

SettingValue
DB_DRIVERsqlite
DB_PATH/home/humanevo/public_html/customer-profiler/instance/customer_profiler.db
OPENROUTER_API_KEYsk-or-v1-1a8…057b
OPENROUTER_BASE_URLhttps://openrouter.ai/api/v1/chat/completions
OPENROUTER_CHAT_MODELopenai/gpt-3.5-turbo
OPENROUTER_VISION_MODEL— (uses chat model)

How to change settings

  • Create or edit .env in the project root (parent of public/) or inside public/.
  • Use DB_DRIVER=sqlite for no MySQL; use DB_DRIVER=mysql with DB_HOST, DB_NAME, DB_USER, DB_PASS for MySQL.
  • Set OPENROUTER_API_KEY to your OpenRouter key (or leave unset to use the default).
  • Optional: OPENROUTER_CHAT_MODEL, OPENROUTER_VISION_MODEL, OPENROUTER_BASE_URL.
  • Restart the PHP server (Ctrl+C then run start.bat again) after editing .env.