|
| 1 | +# These settings are used by the Data Hub Framework when |
| 2 | +# communicating with MarkLogic. |
| 3 | +# The values in this file are meant as project-wide settings. |
| 4 | +# You can override these properties for a specific environment |
| 5 | +# by creating a gradle-{environment}.properties file. |
| 6 | +# For example, to create a properties file for your prod environment create a file |
| 7 | +# named gradle-prod.properties. |
| 8 | +# |
| 9 | +# .... |
| 10 | +mlHost=localhost |
| 11 | + |
| 12 | +# Your MarkLogic Username and Password |
| 13 | +mlUsername=admin |
| 14 | +mlPassword=admin |
| 15 | + |
| 16 | +# If specified, the manage username/password combo is used with the ML Management REST API for managing application |
| 17 | +# resources; this user must have the manage-admin and rest-admin roles. |
| 18 | +# |
| 19 | +# If these are not set, then mlUsername/mlPassword is used for managing application resources. |
| 20 | +# mlManageUsername= |
| 21 | +# mlManagePassword= |
| 22 | + |
| 23 | +# If specified, the admin username/password combo is used with the ML Management REST API for creating users and roles. This |
| 24 | +# user must have the manage-admin or admin role. A good practice is to use your admin account here to create app-specific |
| 25 | +# users and roles, which can then be used as mlManageUsername/mlManagePassword and mlUsername/mlPassword. |
| 26 | +# |
| 27 | +# These properties are also used for connecting to the admin application on port 8001 - e.g. for initializing ML and for |
| 28 | +# waiting for ML to restart. |
| 29 | +# |
| 30 | +# If these properties are not set, then mlUsername/mlPassword will be used. |
| 31 | +# mlAdminUsername= |
| 32 | +# mlAdminPassword= |
| 33 | + |
| 34 | +# If specified, these values can override where the DHF thinks |
| 35 | +# MarkLogic default ports are at. You would only use this if you |
| 36 | +# have changed the ports on which MarkLogic listens |
| 37 | +# |
| 38 | +# mlAppServicesPort=8000 |
| 39 | +# mlAdminPort=8001 |
| 40 | +# mlManagePort=8002 |
| 41 | + |
| 42 | +mlStagingAppserverName=data-hub-STAGING |
| 43 | +mlStagingPort=8010 |
| 44 | +mlStagingDbName=data-hub-STAGING |
| 45 | +mlStagingForestsPerHost=4 |
| 46 | +mlStagingAuth=digest |
| 47 | + |
| 48 | +mlFinalAppserverName=data-hub-FINAL |
| 49 | +mlFinalPort=8011 |
| 50 | +mlFinalDbName=data-hub-FINAL |
| 51 | +mlFinalForestsPerHost=4 |
| 52 | +mlFinalAuth=digest |
| 53 | + |
| 54 | +mlTraceAppserverName=data-hub-TRACING |
| 55 | +mlTracePort=8012 |
| 56 | +mlTraceDbName=data-hub-TRACING |
| 57 | +mlTraceForestsPerHost=1 |
| 58 | +mlTraceAuth=digest |
| 59 | + |
| 60 | +mlJobAppserverName=data-hub-JOBS |
| 61 | +mlJobPort=8013 |
| 62 | +mlJobDbName=data-hub-JOBS |
| 63 | +mlJobForestsPerHost=1 |
| 64 | +mlJobAuth=digest |
| 65 | + |
| 66 | +mlModulesDbName=data-hub-MODULES |
| 67 | +mlModulesForestsPerHost=1 |
| 68 | + |
| 69 | +mlTriggersDbName=data-hub-TRIGGERS |
| 70 | +mlTriggersForestsPerHost=1 |
| 71 | + |
| 72 | +mlSchemasDbName=data-hub-SCHEMAS |
| 73 | +mlSchemasForestsPerHost=1 |
| 74 | + |
| 75 | +# You can override this to specify an alternate folder for your |
| 76 | +# custom forest info. Defaults to user-config/forests/ |
| 77 | +# mlCustomForestPath=forests |
| 78 | + |
| 79 | +# The name of the Role to create for Hub Access |
| 80 | +mlHubUserRole=data-hub-role |
| 81 | +mlHubUserName=data-hub-user |
| 82 | +# this password is autogenerated for you via the 'gradle hubInit' task |
| 83 | +mlHubUserPassword=b$I7'3Ya|&;Ohw.ZzsDY |
| 84 | + |
| 85 | +# Custom properties defined here |
| 86 | +TEST_DATABASE_NAME=custom-tokens-test-database |
| 87 | +TEST_SERVER_NAME=custom-tokens-test-database-server |
| 88 | +TEST_SERVER_PORT=8014 |
| 89 | +TEST_TRACE_AUTH=digest |
0 commit comments