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.
| Setting | Value |
|---|---|
| DB_DRIVER | sqlite |
| DB_PATH | /home/humanevo/public_html/customer-profiler/instance/customer_profiler.db |
| OPENROUTER_API_KEY | sk-or-v1-1a8…057b |
| OPENROUTER_BASE_URL | https://openrouter.ai/api/v1/chat/completions |
| OPENROUTER_CHAT_MODEL | openai/gpt-3.5-turbo |
| OPENROUTER_VISION_MODEL | — (uses chat model) |
How to change settings
- Create or edit
.envin the project root (parent ofpublic/) or insidepublic/. - Use
DB_DRIVER=sqlitefor no MySQL; useDB_DRIVER=mysqlwithDB_HOST,DB_NAME,DB_USER,DB_PASSfor MySQL. - Set
OPENROUTER_API_KEYto 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.batagain) after editing .env.