-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env.example
More file actions
59 lines (49 loc) · 1.66 KB
/
.env.example
File metadata and controls
59 lines (49 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# NOTE: To configure environment, copy this file into .env file (under the same
# folder) and adjust the values.
# LLM API Configuration (choose one or more)
# OpenAI
OPENAI_API_KEY=your_actual_openai_api_key
# Anthropic (Claude)
# ANTHROPIC_API_KEY=your_actual_anthropic_api_key
# Google (Gemini)
# GOOGLE_API_KEY=your_actual_google_api_key
# LLM Provider Configuration (optional - auto-detects from available API keys)
# LLM_PROVIDER: openai, anthropic, gemini
# LLM_PROVIDER=openai
# LLM_MODEL=gpt-4o
# Defaults by provider:
# - OpenAI: gpt-4o
# - Anthropic: claude-sonnet-4-20250514
# - Gemini: gemini-2.0-flash-exp
# Migration Defaults (can be overridden via CLI flags)
# SQL2MG_MODE: automatic, incremental
SQL2MG_MODE=automatic
# SQL2MG_STRATEGY: deterministic, llm
SQL2MG_STRATEGY=deterministic
# SQL2MG_META_POLICY: auto, reset, skip
SQL2MG_META_POLICY=auto
SQL2MG_LOG_LEVEL=INFO
# Source Database Selection
# SOURCE_DB_TYPE: mysql, postgresql
SOURCE_DB_TYPE=mysql
# MySQL Database Configuration (used when SOURCE_DB_TYPE=mysql)
MYSQL_HOST=host.docker.internal
MYSQL_USER=root
MYSQL_PASSWORD=your_mysql_password
MYSQL_DATABASE=sakila
MYSQL_PORT=3306
# PostgreSQL Database Configuration (used when SOURCE_DB_TYPE=postgresql)
POSTGRES_HOST=localhost
POSTGRES_USER=postgres
POSTGRES_PASSWORD=your_postgres_password
POSTGRES_DATABASE=postgres
POSTGRES_PORT=5432
POSTGRES_SCHEMA=public
# Editor for opening mapping files (e.g. nano, vim, nvim, 'code --wait')
# Falls back to $VISUAL, then vi. Can also be set via --editor flag.
# EDITOR=nvim
# Memgraph Database Configuration
MEMGRAPH_URL=bolt://localhost:7687
MEMGRAPH_USERNAME=
MEMGRAPH_PASSWORD=
MEMGRAPH_DATABASE=memgraph