-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradle.properties
More file actions
114 lines (98 loc) · 3.75 KB
/
gradle.properties
File metadata and controls
114 lines (98 loc) · 3.75 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# These settings are used by the Data Hub Framework when
# communicating with MarkLogic.
# The values in this file are meant as project-wide settings.
# You can override these properties for a specific environment
# by creating a gradle-{environment}.properties file.
# For example, to create a properties file for your prod environment create a file
# named gradle-prod.properties.
#
# ....
mlHost=localhost
# Your MarkLogic Username and Password
mlUsername=
mlPassword=
# If specified, the manage username/password combo is used with the ML Management REST API for managing application
# resources; this user must have the manage-admin and rest-admin roles.
#
# If these are not set, then mlUsername/mlPassword is used for managing application resources.
# mlManageUsername=
# mlManagePassword=
#
# To change the Manage Port
# mlManagePort=8002
#
# To use SSL on the Manage appserver (port 8002 by default)
# mlManageScheme=https
# mlManageSimpleSsl=true
# If specified, the admin username/password combo is used with the ML Management REST API for creating users and roles. This
# user must have the manage-admin or admin role. A good practice is to use your admin account here to create app-specific
# users and roles, which can then be used as mlManageUsername/mlManagePassword and mlUsername/mlPassword.
#
# These properties are also used for connecting to the admin application on port 8001 - e.g. for initializing ML and for
# waiting for ML to restart.
#
# If these properties are not set, then mlUsername/mlPassword will be used.
# mlAdminUsername=
# mlAdminPassword=
#
# To change the Admin Port
# mlAdminPort=8001
#
# To use SSL on the Admin appserver (port 8001 by default)
# mlAdminScheme=https
# mlAdminSimpleSsl=true
# If specified, these values can override where the DHF thinks
# MarkLogic default ports are at. You would only use this if you
# have changed the ports on which MarkLogic listens
#
# mlAppServicesPort=8000
#
# To use SSL on the AppServices appserver (port 8000 by default)
# mlAppServicesSimpleSsl=true
mlStagingAppserverName=semantics-data-hub-STAGING
mlStagingPort=7010
mlStagingDbName=semantics-data-hub-STAGING
mlStagingForestsPerHost=4
mlStagingAuth=digest
# To enable SSL for staging
# mlStagingSimpleSsl=true
mlFinalAppserverName=semantics-data-hub-FINAL
mlFinalPort=7011
mlFinalDbName=semantics-data-hub-FINAL
mlFinalForestsPerHost=4
mlFinalAuth=digest
# To enable SSL for final
# mlFinalSimpleSsl=true
mlTraceAppserverName=semantics-data-hub-TRACING
mlTracePort=7012
mlTraceDbName=semantics-data-hub-TRACING
mlTraceForestsPerHost=1
mlTraceAuth=digest
# To enable SSL for trace
# mlTraceSimpleSsl=true
mlJobAppserverName=semantics-data-hub-JOBS
mlJobPort=7013
mlJobDbName=semantics-data-hub-JOBS
mlJobForestsPerHost=1
mlJobAuth=digest
# To enable SSL for jobs
# mlJobSimpleSsl=true
mlModulesDbName=semantics-data-hub-MODULES
mlModulesForestsPerHost=1
mlTriggersDbName=semantics-data-hub-TRIGGERS
mlTriggersForestsPerHost=1
mlSchemasDbName=semantics-data-hub-SCHEMAS
mlSchemasForestsPerHost=1
# You can override this to specify an alternate folder for your
# custom forest info. Defaults to user-config/forests/
# mlCustomForestPath=forests
# The name of the Role to create for Hub Access
mlHubUserRole=data-hub-role
mlHubUserName=data-hub-user
# this password is autogenerated for you via the 'gradle hubInit' task
mlHubUserPassword=~TsnYx5;t3jmO(aEnvbj
# If you are working with a load balancer you can
# specify the hostname(s) of the load balancer here separated by commas
# see: https://docs.marklogic.com/guide/java/data-movement#id_26583
# for more info about what's happening under the hood
# mlLoadBalancerHosts=your-load-balancer-hostnames,separated,by-commas