# PostgreSQL Configuration
POSTGRES_PORT=5432
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=Northwind

# MySQL Configuration
MYSQL_PORT=3306
MYSQL_USER=root
MYSQL_PASSWORD=password
MYSQL_DB=Northwind

# MariaDB Configuration
MARIADB_PORT=3307
MARIADB_USER=root
MARIADB_PASSWORD=password
MARIADB_DB=Northwind

# SQL Server Configuration
SQLSERVER_PORT=1433
SQLSERVER_USER=sa
SQLSERVER_PASSWORD=Password123!
SQLSERVER_DB=Northwind

# Oracle Configuration
ORACLE_PORT=1521
ORACLE_USER=oracle
ORACLE_PASSWORD=oracle
# ORACLE_DB=Northwind

# DB2 Configuration (not currently in docker-compose)
DB2_PORT=50000
DB2_USER=db2inst1
DB2_PASSWORD=password
DB2_DB=NORTHWND

# Common settings
LOG_ROOT_DIR=./logs
DATA_ROOT_DIR=.