- Add PostgreSQL and SQLite database adapters with factory pattern - Add migration script for SQLite to PostgreSQL - Add production Dockerfiles and docker-compose configs - Add deployment documentation and scripts - Add BIA sync dashboard and matching service - Add data completeness configuration and components - Add new dashboard components (BusinessImportanceComparison, ComplexityDynamics, etc.) - Update various services and routes - Remove deprecated management-parameters.json and taxonomy files
31 lines
760 B
Plaintext
31 lines
760 B
Plaintext
# Application
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
|
|
# Database Configuration
|
|
# Use 'postgres' for PostgreSQL or 'sqlite' for SQLite (default)
|
|
DATABASE_TYPE=postgres
|
|
DATABASE_URL=postgresql://cmdb:cmdb-dev@localhost:5432/cmdb
|
|
# Or use individual components:
|
|
# DATABASE_HOST=localhost
|
|
# DATABASE_PORT=5432
|
|
# DATABASE_NAME=cmdb
|
|
# DATABASE_USER=cmdb
|
|
# DATABASE_PASSWORD=cmdb-dev
|
|
# DATABASE_SSL=false
|
|
|
|
# Jira Assets Configuration
|
|
JIRA_HOST=https://jira.zuyderland.nl
|
|
JIRA_PAT=your_personal_access_token_here
|
|
JIRA_SCHEMA_ID=your_schema_id
|
|
JIRA_API_BATCH_SIZE=20
|
|
|
|
# Claude API
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
|
|
# Tavily API Key (verkrijgbaar via https://tavily.com)
|
|
TAVILY_API_KEY=your_tavily_api_key_here
|
|
|
|
# OpenAI API
|
|
OPENAI_API_KEY=your_openai_api_key_here
|