mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-12 19:49:36 +00:00

* Fixed Tracking and run cli - added piwik directives - added application.env for frontend specific * adding frontend env file * added LDAP config variables in frontend env * revert back web package * added readme troubleshooting * fixed PR review feedbacks
27 lines
767 B
Bash
27 lines
767 B
Bash
# Secret Key
|
|
WHZ_SECRET="change_me"
|
|
|
|
# Database Connection
|
|
WHZ_DB_NAME="wherehows"
|
|
WHZ_DB_USERNAME="wherehows"
|
|
WHZ_DB_PASSWORD="wherehows"
|
|
|
|
# Fully qualified jdbc url
|
|
WHZ_DB_URL="jdbc:mysql://localhost/wherehows"
|
|
|
|
# Serach Engine
|
|
WHZ_SEARCH_ENGINE=elasticsearch
|
|
|
|
# Elasticsearch (Change "localhost" to your Es host )
|
|
WHZ_ES_DATASET_URL="http://localhost:9200/wherehows/dataset/_search"
|
|
WHZ_ES_METRIC_URL="http://localhost:9200/wherehows/metric/_search"
|
|
WHZ_ES_FLOW_URL="http://localhost:9200/wherehows/flow_jobs/_search"
|
|
|
|
# LDAP
|
|
WHZ_LDAP_URL=your_ldap_url
|
|
WHZ_LDAP_PRINCIPAL_DOMAIN=your_ldap_principal_domain
|
|
WHZ_LDAP_SEARCH_BASE=your_ldap_search_base
|
|
|
|
# Piwik tracking configuration
|
|
PIWIK_SITE_ID="0000" # change_to_your_piwik_id
|
|
PIWIK_URL="change_to_your_piwik_url" |