forked from lucee/extension-hibernate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.template
52 lines (46 loc) · 1.3 KB
/
.env.template
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
## H2 ##
H2_CLASS=org.h2.Driver
H2_DBFILE=./tests/db/h2
H2_BUNDLENAME=org.lucee.h2
H2_BUNDLEVERSION=2.1.214.0001L
# MSSQL ##
# Note: If you change MSSQL values, you'll need to also change them in build/docker/mssql/create.sql
MSSQL_BUNDLENAME=org.lucee.mssql
MSSQL_BUNDLEVERSION=4.0.2206.100
MSSQL_CLASS=com.microsoft.sqlserver.jdbc.SQLServerDriver
MSSQL_HOST=127.0.0.1
MSSQL_USERNAME=sa
MSSQL_PASSWORD=hib3rnate_DB
MSSQL_PORT=2433
MSSQL_DATABASE=hibernateDB
## MYSQL ##
MYSQL_BUNDLENAME=com.mysql.cj
MYSQL_BUNDLEVERSION=8.0.19
MYSQL_CLASS=com.mysql.cj.jdbc.Driver
MYSQL_HOST=127.0.0.1
MYSQL_USERNAME=root
MYSQL_PASSWORD=mysqlIsTheBomb
MYSQL_PORT=4306
MYSQL_DATABASE=hibernateDB
## Postgres ##
POSTGRES_BUNDLENAME=org.postgresql.jdbc
POSTGRES_BUNDLEVERSION=42.2.20
POSTGRES_CLASS=org.postgresql.Driver
POSTGRES_HOST=127.0.0.1
POSTGRES_USERNAME=hibernate
POSTGRES_PASSWORD=postgresIsTheBomb
POSTGRES_PORT=5432
POSTGRES_DATABASE=hibernateDB
# Uncomment and edit to test on Oracle
# ORACLE_HOST=127.0.0.1
# ORACLE_USERNAME=root
# ORACLE_PASSWORD=oracleIsTheBomb
# ORACLE_PORT=3306
# ORACLE_DATABASE=hibernateDB
# For Mongo testing
# TODO: Re-enable when MongoDB testing is fixed in Lucee 6
# MONGODB_HOST=127.0.0.1
# MONGODB_USERNAME=mongoadmin
# MONGODB_PASSWORD=mongoIsTheBomb
# MONGODB_PORT=27017
# MONGODB_DB=hibernateDB