-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 1.01 KB
/
.env.example
File metadata and controls
30 lines (24 loc) · 1.01 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
# SQLBridge Database Configuration
# Copy this file to .env and fill in your credentials
# Database 0 (Production)
DB0_JDBC_URL=jdbc:sqlserver://your-server:1433;encrypt=false
DB0_USERNAME=your_username
DB0_PASSWORD=your_password
# Database 1 (Production)
DB1_JDBC_URL=jdbc:sqlserver://your-server:1433;encrypt=false
DB1_USERNAME=your_username
DB1_PASSWORD=your_password
# Database 2 (Production)
DB2_JDBC_URL=jdbc:sqlserver://your-server:1433;encrypt=false
DB2_USERNAME=your_username
DB2_PASSWORD=your_password
# Development Environment (used by sqlbridge-datasource.groovy)
DEV_DB0_JDBC_URL=jdbc:jtds:sqlserver://your-dev-server:1433;DatabaseName=YourDB
DEV_DB0_USERNAME=your_dev_username
DEV_DB0_PASSWORD=your_dev_password
DEV_DB1_JDBC_URL=jdbc:jtds:sqlserver://your-dev-server:1433;DatabaseName=YourDB
DEV_DB1_USERNAME=your_dev_username
DEV_DB1_PASSWORD=your_dev_password
DEV_DB2_JDBC_URL=jdbc:jtds:sqlserver://your-dev-server:1433;DatabaseName=YourDB
DEV_DB2_USERNAME=your_dev_username
DEV_DB2_PASSWORD=your_dev_password