mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
- Create chat_service.spec.ts with tests for suggestion parsing (comma/newline separated, bullet points, numbered lists, quote stripping), model selection (largest model), error handling for all DB-dependent methods, generateTitle fallback logic, and message role validation - Fix TypeScript narrowing error in docker_service.spec.ts container command splitting test (null type cast) - Add .env.test with required environment variables for test suite bootstrap https://claude.ai/code/session_01JFvpTYgm8GiE4vJ4cJKsFx
19 lines
497 B
Plaintext
19 lines
497 B
Plaintext
PORT=8080
|
|
HOST=localhost
|
|
LOG_LEVEL=info
|
|
APP_KEY=test_key_for_unit_tests_1234567890
|
|
NODE_ENV=test
|
|
URL=http://localhost:8080
|
|
SESSION_DRIVER=cookie
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
DB_USER=root
|
|
DB_DATABASE=nomad
|
|
DB_PASSWORD=password
|
|
DB_SSL=false
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
# Storage path for NOMAD content (ZIM files, maps, etc.)
|
|
# On Windows dev, use an absolute path like: C:/nomad-storage
|
|
# On Linux production, use: /opt/project-nomad/storage
|
|
NOMAD_STORAGE_PATH=/opt/project-nomad/storage |