mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 19:25:56 +00:00
98 lines
2.4 KiB
Plaintext
98 lines
2.4 KiB
Plaintext
# This is the main configuration file for the application.
|
|
# ~~~~~
|
|
|
|
# Secret key
|
|
# ~~~~~
|
|
# The secret key is used to secure cryptographics functions.
|
|
#
|
|
# This must be changed for production, but we recommend not changing it in this file.
|
|
#
|
|
# See http://www.playframework.com/documentation/latest/ApplicationSecret for more details.
|
|
play.http.secret.key = ${DATAHUB_SECRET}
|
|
|
|
# The application languages
|
|
# ~~~~~
|
|
play.i18n.langs = ["en"]
|
|
|
|
play.application.loader = play.inject.guice.GuiceApplicationLoader
|
|
|
|
# Play http parser settings
|
|
# #
|
|
# # Increase default buffer size to handle large post request
|
|
play.http.parser.maxMemoryBuffer = ${DATAHUB_PLAY_MEM_BUFFER_SIZE}
|
|
|
|
# TODO: Disable legacy URL encoding eventually
|
|
play.modules.disabled += "play.api.mvc.CookiesModule"
|
|
play.modules.enabled += "play.api.mvc.LegacyCookiesModule"
|
|
|
|
# Database configuration
|
|
# ~~~~~
|
|
# You can declare as many datasources as you want.
|
|
# By convention, the default datasource is named `default`
|
|
#
|
|
# db.default.driver=org.h2.Driver
|
|
# db.default.url="jdbc:h2:mem:play"
|
|
# db.default.username=sa
|
|
# db.default.password=""
|
|
|
|
# Evolutions
|
|
# ~~~~~
|
|
# You can disable evolutions if needed
|
|
# play.evolutions.enabled=false
|
|
|
|
# You can disable evolutions for a specific datasource if necessary
|
|
# play.evolutions.db.default.enabled=false
|
|
|
|
app.version = ${DATAHUB_APP_VERSION}
|
|
|
|
dataset.hdfs_browser.link = ""
|
|
linkedin.internal = false
|
|
|
|
linkedin.show.dataset.lineage = true
|
|
|
|
linkedin.suggestion.confidence.threshold = "50"
|
|
|
|
tracking.piwik.siteid = "0"
|
|
tracking.piwik.siteid = ${?DATAHUB_PIWIK_SITEID}
|
|
|
|
tracking.piwik.url = ""
|
|
tracking.piwik.url = ${?DATAHUB_PIWIK_URL}
|
|
|
|
linkedin.links.avi.urlPrimary = ""
|
|
|
|
linkedin.links.avi.urlFallback = ""
|
|
|
|
links.wiki.appHelp = "https://github.com/linkedin/WhereHows/tree/datahub"
|
|
links.wiki.gdprPii = ""
|
|
links.wiki.tmsSchema = ""
|
|
links.wiki.gdprTaxonomy = ""
|
|
links.wiki.staleSearchIndex = ""
|
|
links.wiki.dht = ""
|
|
links.wiki.purgePolicies = ""
|
|
links.wiki.jitAcl = ""
|
|
links.wiki.metadataCustomRegex = ""
|
|
links.wiki.complianceOwner = ""
|
|
links.wiki.exportPolicy = ""
|
|
links.wiki.metadataHealth = ""
|
|
links.wiki.purgeKey = ""
|
|
links.wiki.datasetDecommission = ""
|
|
|
|
ui.show.ownership.revamp = true
|
|
|
|
ui.show.staging.banner = false
|
|
ui.show.people = false
|
|
|
|
ui.show.CM.banner = false
|
|
ui.show.CM.link = ""
|
|
|
|
ui.show.stale.search = true
|
|
|
|
ui.show.live.data.banner = false
|
|
|
|
ui.show.lineage.graph = true
|
|
|
|
ui.show.advanced.search = true
|
|
|
|
ui.show.institutional.memory = true
|
|
|
|
ui.new.browse.dataset = true |