-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathlucee.json
More file actions
52 lines (52 loc) · 1.13 KB
/
lucee.json
File metadata and controls
52 lines (52 loc) · 1.13 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
{
"name": "wheels",
"lucee": {
"version": "7.0.0.395"
},
"port": 8080,
"shutdownPort": 8081,
"webroot": "./public",
"openBrowser": false,
"jvm": {
"maxMemory": "512m",
"minMemory": "128m"
},
"urlRewrite": {
"enabled": true,
"routerFile": "index.cfm"
},
"admin": {
"enabled": true,
"password": "wheels"
},
"enableLucee": true,
"enableREST": false,
"configuration": {
"datasources": {
"wheelstestdb_sqlite": {
"class": "org.sqlite.JDBC",
"database": "wheelstestdb",
"dbdriver": "Other",
"dsn": "jdbc:sqlite:{project}/wheelstestdb.db",
"host": "",
"password": "",
"username": ""
},
"wheelstestdb_sqlite_tenant_b": {
"class": "org.sqlite.JDBC",
"database": "wheelstestdb_tenant_b",
"dbdriver": "Other",
"dsn": "jdbc:sqlite:{project}/wheelstestdb_tenant_b.db",
"host": "",
"password": "",
"username": ""
}
},
"mappings": {
"/wheels": "../vendor/wheels",
"/app": "../app",
"/config": "../config",
"/tests": "../tests"
}
}
}